Builder: set the `--recursive` flag.
(mut self, recursive: bool)
| 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 { |
no outgoing calls