Builder: set the --all flag.
(mut self, all: bool)
| 191 | |
| 192 | /// Builder: set the --all flag. |
| 193 | pub fn with_all(mut self, all: bool) -> Self { |
| 194 | self.all = all; |
| 195 | self |
| 196 | } |
| 197 | |
| 198 | /// Builder: set the insecure flag. |
| 199 | pub fn with_insecure(mut self, insecure: bool) -> Self { |
no outgoing calls