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