Builder: set the --all flag.
(mut self, all: bool)
| 234 | |
| 235 | /// Builder: set the --all flag. |
| 236 | pub fn with_all(mut self, all: bool) -> Self { |
| 237 | self.all = all; |
| 238 | self |
| 239 | } |
| 240 | |
| 241 | /// Builder: set the insecure flag. |
| 242 | pub fn with_insecure(mut self, insecure: bool) -> Self { |
no outgoing calls