Builder: set the dry-run flag.
(mut self, dry_run: bool)
| 179 | |
| 180 | /// Builder: set the dry-run flag. |
| 181 | pub fn with_dry_run(mut self, dry_run: bool) -> Self { |
| 182 | self.dry_run = dry_run; |
| 183 | self |
| 184 | } |
| 185 | |
| 186 | /// Builder: set the force flag. |
| 187 | pub fn with_force(mut self, force: bool) -> Self { |
no outgoing calls