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