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.
Auto Trait Implementations§
impl<T> Freeze for HttpsConnector<T>where
T: Freeze,
impl<T> RefUnwindSafe for HttpsConnector<T>where
T: RefUnwindSafe,
impl<T> Send for HttpsConnector<T>where
T: Send,
impl<T> Sync for HttpsConnector<T>where
T: Sync,
impl<T> Unpin for HttpsConnector<T>where
T: Unpin,
impl<T> UnwindSafe for HttpsConnector<T>where
T: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)