Builder: set the insecure flag.
(mut self, insecure: bool)
| 178 | |
| 179 | /// Builder: set the insecure flag. |
| 180 | pub fn with_insecure(mut self, insecure: bool) -> Self { |
| 181 | self.insecure = insecure; |
| 182 | self |
| 183 | } |
| 184 | |
| 185 | /// Builder: set the timeout in seconds. |
| 186 | pub fn with_timeout(mut self, timeout: u64) -> Self { |
no outgoing calls