Struct hyper_tls::HttpsConnector
source · [−]pub struct HttpsConnector<T> { /* private fields */ }
Expand description
A Connector for the https
scheme.
Implementations
sourceimpl HttpsConnector<HttpConnector>
impl HttpsConnector<HttpConnector>
sourcepub fn new(threads: usize) -> Result<Self, Error>
pub fn new(threads: usize) -> Result<Self, Error>
Construct a new HttpsConnector.
Takes number of DNS worker threads.
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.
sourceimpl<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.
Trait Implementations
sourceimpl<T: Clone> Clone for HttpsConnector<T>
impl<T: Clone> Clone for HttpsConnector<T>
sourcefn clone(&self) -> HttpsConnector<T>
fn clone(&self) -> HttpsConnector<T>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<T> Connect for HttpsConnector<T> where
T: Connect<Error = Error>,
T::Transport: 'static,
T::Future: 'static,
impl<T> Connect for HttpsConnector<T> where
T: Connect<Error = Error>,
T::Transport: 'static,
T::Future: 'static,
type Transport = MaybeHttpsStream<T::Transport>
type Transport = MaybeHttpsStream<T::Transport>
The connected IO Stream.
type Future = HttpsConnecting<T::Transport>
type Future = HttpsConnecting<T::Transport>
A Future that will resolve to the connected Transport.
sourcefn connect(&self, dst: Destination) -> Self::Future
fn connect(&self, dst: Destination) -> Self::Future
Connect to a destination.
sourceimpl<T: Debug> Debug for HttpsConnector<T>
impl<T: Debug> Debug for HttpsConnector<T>
sourceimpl<T> From<(T, TlsConnector)> for HttpsConnector<T>
impl<T> From<(T, TlsConnector)> for HttpsConnector<T>
sourcefn from(args: (T, TlsConnector)) -> HttpsConnector<T>
fn from(args: (T, TlsConnector)) -> HttpsConnector<T>
Performs the conversion.
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more