Builder: set the no-edit flag.
(mut self, no_edit: bool)
| 272 | |
| 273 | /// Builder: set the no-edit flag. |
| 274 | pub fn with_no_edit(mut self, no_edit: bool) -> Self { |
| 275 | self.no_edit = no_edit; |
| 276 | self |
| 277 | } |
| 278 | |
| 279 | /// Builder: set the dry-run flag. |
| 280 | pub fn with_dry_run(mut self, dry_run: bool) -> Self { |
no outgoing calls