Builder: set the insecure flag.
(mut self, insecure: bool)
| 240 | |
| 241 | /// Builder: set the insecure flag. |
| 242 | pub fn with_insecure(mut self, insecure: bool) -> Self { |
| 243 | self.insecure = insecure; |
| 244 | self |
| 245 | } |
| 246 | |
| 247 | /// Builder: set the timeout in seconds. |
| 248 | pub fn with_timeout(mut self, timeout: u64) -> Self { |
no outgoing calls