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