Builder: set the force flag.
(mut self, force: bool)
| 228 | |
| 229 | /// Builder: set the force flag. |
| 230 | pub fn with_force(mut self, force: bool) -> Self { |
| 231 | self.force = force; |
| 232 | self |
| 233 | } |
| 234 | |
| 235 | /// Builder: set the --all flag. |
| 236 | pub fn with_all(mut self, all: bool) -> Self { |
no outgoing calls