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