Struct hyper_tls::HttpsConnector
[−]
[src]
pub struct HttpsConnector<T> { /* fields omitted */ }A Connector for the https scheme.
Methods
impl HttpsConnector<HttpConnector>[src]
fn new(threads: usize, handle: &Handle) -> Result<Self>
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.
Trait Implementations
impl<T: Clone> Clone for HttpsConnector<T>[src]
fn clone(&self) -> HttpsConnector<T>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl<T> From<(T, TlsConnector)> for HttpsConnector<T>[src]
fn from(args: (T, TlsConnector)) -> HttpsConnector<T>
Performs the conversion.
impl<T> Debug for HttpsConnector<T>[src]
impl<T: Connect> Service for HttpsConnector<T>[src]
type Request = Uri
Requests handled by the service.
type Response = MaybeHttpsStream<T::Output>
Responses given by the service.
type Error = Error
Errors produced by the service.
type Future = HttpsConnecting<T::Output>
The future response value.
fn call(&self, uri: Uri) -> Self::Future
Process the request and return the response asynchronously.