Trait native_tls::backend::schannel::TlsStreamExt [] [src]

pub trait TlsStreamExt<S> {
    fn raw_stream(&self) -> &TlsStream<S>;
    fn raw_stream_mut(&mut self) -> &mut TlsStream<S>;
}

SChannel-specific extensions to TlsStream.

Required Methods

Returns a shared reference to the SChannel TlsStream.

Returns a mutable reference to the SChannel TlsStream.

Implementors