Builder: set the insecure flag.
(mut self, insecure: bool)
| 226 | |
| 227 | /// Builder: set the insecure flag. |
| 228 | pub fn with_insecure(mut self, insecure: bool) -> Self { |
| 229 | self.insecure = insecure; |
| 230 | self |
| 231 | } |
| 232 | |
| 233 | /// Builder: set the timeout in seconds. |
| 234 | pub fn with_timeout(mut self, timeout: u64) -> Self { |
no outgoing calls