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