Builder: set the dry-run flag.
(mut self, dry_run: bool)
| 214 | |
| 215 | /// Builder: set the dry-run flag. |
| 216 | pub fn with_dry_run(mut self, dry_run: bool) -> Self { |
| 217 | self.dry_run = dry_run; |
| 218 | self |
| 219 | } |
| 220 | |
| 221 | /// Builder: set the --all flag. |
| 222 | pub fn with_all(mut self, all: bool) -> Self { |
no outgoing calls