Builder: set the insecure flag.
(mut self, insecure: bool)
| 208 | |
| 209 | /// Builder: set the insecure flag. |
| 210 | pub fn with_insecure(mut self, insecure: bool) -> Self { |
| 211 | self.insecure = insecure; |
| 212 | self |
| 213 | } |
| 214 | |
| 215 | /// Builder: set the timeout in seconds. |
| 216 | pub fn with_timeout(mut self, timeout: u64) -> Self { |
no outgoing calls