Struct hyper_openssl::HttpsConnector [] [src]

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

An Connector using OpenSSL to support http and https schemes.

Methods

impl HttpsConnector<HttpConnector>
[src]

[src]

Creates a new HttpsConnector with default settings and using the standard Hyper HttpConnector.

impl<T> HttpsConnector<T> where
    T: Connect
[src]

[src]

Creates a new HttpsConnector.

[src]

Registers a callback which can customize the configuration of each connection.

It is provided with a reference to the ConnectConfiguration as well as the URI.

Trait Implementations

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

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T> Service for HttpsConnector<T> where
    T: Connect
[src]

Requests handled by the service.

Responses given by the service.

Errors produced by the service.

The future response value.

[src]

Process the request and return the response asynchronously.