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