[][src]Crate futures_rustls

Asynchronous TLS/SSL streams for Future using Rustls.

Re-exports

pub use rustls;
pub use webpki;

Modules

client
server

Structs

Accept

Future returned from TlsAcceptor::accept which will resolve once the accept handshake has finished.

Connect

Future returned from TlsConnector::connect which will resolve once the connection handshake has finished.

TlsAcceptor

A wrapper around a rustls::ServerConfig, providing an async accept method.

TlsConnector

A wrapper around a rustls::ClientConfig, providing an async connect method.