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