Struct hyper_rustls::HttpsConnector[][src]

pub struct HttpsConnector<T> { /* fields omitted */ }

A Connector for the https scheme.

Methods

impl HttpsConnector<HttpConnector>
[src]

Construct a new HttpsConnector.

Takes number of DNS worker threads.

Trait Implementations

impl<T: Clone> Clone for HttpsConnector<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T> Debug for HttpsConnector<T>
[src]

Formats the value using the given formatter. Read more

impl<T> From<(T, ClientConfig)> for HttpsConnector<T>
[src]

Performs the conversion.

impl<T> Connect for HttpsConnector<T> where
    T: Connect<Error = Error>,
    T::Transport: 'static,
    T::Future: 'static, 
[src]

The connected IO Stream.

An error occured when trying to connect.

A Future that will resolve to the connected Transport.

Connect to a destination.

Auto Trait Implementations

impl<T> Send for HttpsConnector<T> where
    T: Send

impl<T> Sync for HttpsConnector<T> where
    T: Sync