Builder: set the dry-run flag.
(mut self, dry_run: bool)
| 313 | |
| 314 | /// Builder: set the dry-run flag. |
| 315 | pub fn with_dry_run(mut self, dry_run: bool) -> Self { |
| 316 | self.dry_run = dry_run; |
| 317 | self |
| 318 | } |
| 319 | |
| 320 | /// Builder: set the skip-binary flag. |
| 321 | pub fn with_skip_binary(mut self, skip_binary: bool) -> Self { |
no outgoing calls