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