Module reverse_proxy_service::client
source · Available on crate features
http1
or http2
only.Expand description
Includes helper functions to build Client
s, and some re-exports from hyper::client
or
hyper_tls
.
Structs
- A builder to configure a new
Client
. - A Client to make outgoing HTTP requests.
- A connector for the
http
scheme. - HttpsConnector
https
A Connector for thehttps
scheme. - NativeTlsConnector
nativetls
A Connector for thehttps
scheme. - RustlsConnector
rustls
A Connector for thehttps
scheme.
Functions
- Default
Builder
. - Same as
Client::new()
, except for theB
parameter. - https_default
https
ornativetls
Alias tonativetls_default()
. - nativetls_default
nativetls
With the defaulthyper_tls::HttpsConnector
. - rustls_default
rustls
With the defaulthyper_rustls::HttpsConnector
. - Default builder and given connector.