Builder: set the force flag.
(mut self, force: bool)
| 196 | |
| 197 | /// Builder: set the force flag. |
| 198 | pub fn with_force(mut self, force: bool) -> Self { |
| 199 | self.force = force; |
| 200 | self |
| 201 | } |
| 202 | |
| 203 | /// Builder: set the --all flag. |
| 204 | pub fn with_all(mut self, all: bool) -> Self { |
no outgoing calls