Builder: set the insecure flag.
(mut self, insecure: bool)
| 268 | |
| 269 | /// Builder: set the insecure flag. |
| 270 | pub fn with_insecure(mut self, insecure: bool) -> Self { |
| 271 | self.insecure = insecure; |
| 272 | self |
| 273 | } |
| 274 | |
| 275 | /// Builder: set the timeout in seconds. |
| 276 | pub fn with_timeout(mut self, timeout: u64) -> Self { |
no outgoing calls