Builder: set the dry-run flag.
(mut self, dry_run: bool)
| 191 | |
| 192 | /// Builder: set the dry-run flag. |
| 193 | pub fn with_dry_run(mut self, dry_run: bool) -> Self { |
| 194 | self.dry_run = dry_run; |
| 195 | self |
| 196 | } |
| 197 | |
| 198 | /// Builder: set the force flag. |
| 199 | pub fn with_force(mut self, force: bool) -> Self { |
no outgoing calls