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