Builder: set the force flag.
(mut self, force: bool)
| 185 | |
| 186 | /// Builder: set the force flag. |
| 187 | pub fn with_force(mut self, force: bool) -> Self { |
| 188 | self.force = force; |
| 189 | self |
| 190 | } |
| 191 | |
| 192 | /// Builder: set the --all flag. |
| 193 | pub fn with_all(mut self, all: bool) -> Self { |
no outgoing calls