Set the connection timeout.
(mut self, connect_timeout: Duration)
| 113 | |
| 114 | /// Set the connection timeout. |
| 115 | pub fn with_connect_timeout(mut self, connect_timeout: Duration) -> Self { |
| 116 | self.connect_timeout = connect_timeout; |
| 117 | self |
| 118 | } |
| 119 | |
| 120 | /// Skip TLS certificate verification (dangerous!). |
| 121 | /// |
no outgoing calls