Builder: set the --all flag.
(mut self, all: bool)
| 218 | |
| 219 | /// Builder: set the --all flag. |
| 220 | pub fn with_all(mut self, all: bool) -> Self { |
| 221 | self.all = all; |
| 222 | self |
| 223 | } |
| 224 | |
| 225 | /// Builder: set the insecure flag. |
| 226 | pub fn with_insecure(mut self, insecure: bool) -> Self { |
no outgoing calls