Builder: set the dry-run flag.
(mut self, dry_run: bool)
| 139 | |
| 140 | /// Builder: set the dry-run flag. |
| 141 | pub fn with_dry_run(mut self, dry_run: bool) -> Self { |
| 142 | self.dry_run = dry_run; |
| 143 | self |
| 144 | } |
| 145 | |
| 146 | /// Builder: set the force flag. |
| 147 | pub fn with_force(mut self, force: bool) -> Self { |
no outgoing calls