Builder: set the `--force` flag.
(mut self, force: bool)
| 228 | |
| 229 | /// Builder: set the `--force` flag. |
| 230 | pub fn with_force(mut self, force: bool) -> Self { |
| 231 | self.force = force; |
| 232 | self |
| 233 | } |
| 234 | |
| 235 | /// Builder: set the `--recursive` flag. |
| 236 | pub fn with_recursive(mut self, recursive: bool) -> Self { |
no outgoing calls