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