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