Trait tokio_rustls::ClientConfigExt
[−]
[src]
pub trait ClientConfigExt {
fn connect_async<S>(&self, domain: &str, stream: S) -> ConnectAsync<S>
where
S: AsyncRead + AsyncWrite;
}Extension trait for the Arc<ClientConfig> type in the rustls crate.
Required Methods
fn connect_async<S>(&self, domain: &str, stream: S) -> ConnectAsync<S> where
S: AsyncRead + AsyncWrite,
S: AsyncRead + AsyncWrite,
Implementors
impl ClientConfigExt for Arc<ClientConfig>