Builder: set the dry-run flag.
(mut self, dry_run: bool)
| 121 | |
| 122 | /// Builder: set the dry-run flag. |
| 123 | pub fn with_dry_run(mut self, dry_run: bool) -> Self { |
| 124 | self.dry_run = dry_run; |
| 125 | self |
| 126 | } |
| 127 | |
| 128 | /// Builder: set the force flag. |
| 129 | pub fn with_force(mut self, force: bool) -> Self { |
no outgoing calls