Builder: set the --all flag.
(mut self, all: bool)
| 203 | |
| 204 | /// Builder: set the --all flag. |
| 205 | pub fn with_all(mut self, all: bool) -> Self { |
| 206 | self.all = all; |
| 207 | self |
| 208 | } |
| 209 | |
| 210 | /// Builder: set the insecure flag. |
| 211 | pub fn with_insecure(mut self, insecure: bool) -> Self { |
no outgoing calls