Set whether to allow conflicts.
(mut self, allow: bool)
| 88 | |
| 89 | /// Set whether to allow conflicts. |
| 90 | pub fn allow_conflicts(mut self, allow: bool) -> Self { |
| 91 | self.allow_conflicts = allow; |
| 92 | self |
| 93 | } |
| 94 | |
| 95 | /// Set dry run mode. |
| 96 | pub fn dry_run(mut self, dry: bool) -> Self { |
no outgoing calls