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
fn raw_stream(&self) -> &TlsStream<S>
Returns a shared reference to the SChannel TlsStream
.
fn raw_stream_mut(&mut self) -> &mut TlsStream<S>
Returns a mutable reference to the SChannel TlsStream
.
Implementors
impl<S> TlsStreamExt<S> for TlsStream<S>