Builder: set the dry-run flag.
(mut self, dry_run: bool)
| 174 | |
| 175 | /// Builder: set the dry-run flag. |
| 176 | pub fn with_dry_run(mut self, dry_run: bool) -> Self { |
| 177 | self.dry_run = dry_run; |
| 178 | self |
| 179 | } |
| 180 | |
| 181 | /// Builder: set the force flag. |
| 182 | pub fn with_force(mut self, force: bool) -> Self { |
no outgoing calls