Struct hyper_tls::HttpsConnector
source · pub struct HttpsConnector<T> { /* private fields */ }
Expand description
A Connector for the https
scheme.
Implementations§
source§impl HttpsConnector<HttpConnector>
impl HttpsConnector<HttpConnector>
sourcepub fn new() -> Self
pub fn new() -> Self
Construct a new HttpsConnector.
This uses hyper’s default HttpConnector
, and default TlsConnector
.
If you wish to use something besides the defaults, use From::from
.
Note
By default this connector will use plain HTTP if the URL provded uses the HTTP scheme (eg: http://example.com/).
If you would like to force the use of HTTPS then call https_only(true) on the returned connector.
Panics
This will panic if the underlying TLS context could not be created.
To handle that error yourself, you can use the HttpsConnector::from
constructor after trying to make a TlsConnector
.
source§impl<T> HttpsConnector<T>
impl<T> HttpsConnector<T>
sourcepub fn https_only(&mut self, enable: bool)
pub fn https_only(&mut self, enable: bool)
Force the use of HTTPS when connecting.
If a URL is not https
when connecting, an error is returned.
sourcepub fn new_with_connector(http: T) -> Self
pub fn new_with_connector(http: T) -> Self
With connector constructor
Trait Implementations§
source§impl<T: Clone> Clone for HttpsConnector<T>
impl<T: Clone> Clone for HttpsConnector<T>
source§fn clone(&self) -> HttpsConnector<T>
fn clone(&self) -> HttpsConnector<T>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<T: Debug> Debug for HttpsConnector<T>
impl<T: Debug> Debug for HttpsConnector<T>
source§impl<T: Default> Default for HttpsConnector<T>
impl<T: Default> Default for HttpsConnector<T>
source§impl<T> From<(T, TlsConnector)> for HttpsConnector<T>
impl<T> From<(T, TlsConnector)> for HttpsConnector<T>
source§fn from(args: (T, TlsConnector)) -> HttpsConnector<T>
fn from(args: (T, TlsConnector)) -> HttpsConnector<T>
Converts to this type from the input type.