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