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