Builder: set the `--dry-run` flag.
(mut self, dry_run: bool)
| 222 | |
| 223 | /// Builder: set the `--dry-run` flag. |
| 224 | pub fn with_dry_run(mut self, dry_run: bool) -> Self { |
| 225 | self.dry_run = dry_run; |
| 226 | self |
| 227 | } |
| 228 | |
| 229 | /// Builder: set the `--force` flag. |
| 230 | pub fn with_force(mut self, force: bool) -> Self { |
no outgoing calls