MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / with_recursive

Method with_recursive

atomic-cli/src/commands/add.rs:236–242  ·  view source on GitHub ↗

Builder: set the `--recursive` flag.

(mut self, recursive: bool)

Source from the content-addressed store, hash-verified

234
235 /// Builder: set the `--recursive` flag.
236 pub fn with_recursive(mut self, recursive: bool) -> Self {
237 self.recursive = recursive;
238 if !recursive {
239 self.no_recursive = true;
240 }
241 self
242 }
243
244 /// Builder: set the `--directory` flag.
245 pub fn with_directory(mut self, directory: bool) -> Self {

Calls

no outgoing calls