Builder: set the insecure flag.
(mut self, insecure: bool)
| 248 | |
| 249 | /// Builder: set the insecure flag. |
| 250 | pub fn with_insecure(mut self, insecure: bool) -> Self { |
| 251 | self.insecure = insecure; |
| 252 | self |
| 253 | } |
| 254 | |
| 255 | /// Builder: set the timeout in seconds. |
| 256 | pub fn with_timeout(mut self, timeout: u64) -> Self { |
no outgoing calls