Builder: set the dry-run flag.
(mut self, dry_run: bool)
| 278 | |
| 279 | /// Builder: set the dry-run flag. |
| 280 | pub fn with_dry_run(mut self, dry_run: bool) -> Self { |
| 281 | self.dry_run = dry_run; |
| 282 | self |
| 283 | } |
| 284 | |
| 285 | /// Parse the reference string into a ChangeRef. |
| 286 | fn parse_reference(&self) -> ChangeRef { |
no outgoing calls