Builder: set the dry-run flag.
(mut self, dry_run: bool)
| 321 | |
| 322 | /// Builder: set the dry-run flag. |
| 323 | pub fn with_dry_run(mut self, dry_run: bool) -> Self { |
| 324 | self.dry_run = dry_run; |
| 325 | self |
| 326 | } |
| 327 | |
| 328 | /// Builder: set the skip-binary flag. |
| 329 | pub fn with_skip_binary(mut self, skip_binary: bool) -> Self { |
no outgoing calls