Builder: set the recursive flag.
(mut self, recursive: bool)
| 165 | |
| 166 | /// Builder: set the recursive flag. |
| 167 | pub fn with_recursive(mut self, recursive: bool) -> Self { |
| 168 | self.recursive = recursive; |
| 169 | if !recursive { |
| 170 | self.no_recursive = true; |
| 171 | } |
| 172 | self |
| 173 | } |
| 174 | |
| 175 | /// Builder: set the dry-run flag. |
| 176 | pub fn with_dry_run(mut self, dry_run: bool) -> Self { |
no outgoing calls