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 a new HttpsConnector using default settings.

The Hyper HttpConnector is used to perform the TCP socket connection.

Requires the runtime Cargo feature.

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

[src]

Creates a new HttpsConnector.

The session cache configuration of ssl will be overwritten.

[src]

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

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> Connect for HttpsConnector<T> where
    T: Connect
[src]

The connected IO Stream.

An error occured when trying to connect.

A Future that will resolve to the connected Transport.

[src]

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