Builder: set the insecure flag.
(mut self, insecure: bool)
| 197 | |
| 198 | /// Builder: set the insecure flag. |
| 199 | pub fn with_insecure(mut self, insecure: bool) -> Self { |
| 200 | self.insecure = insecure; |
| 201 | self |
| 202 | } |
| 203 | |
| 204 | /// Builder: set the timeout in seconds. |
| 205 | pub fn with_timeout(mut self, timeout: u64) -> Self { |
no outgoing calls