Trait native_tls::backend::security_framework::TlsStreamExt
[−]
[src]
pub trait TlsStreamExt<S> { fn raw_stream(&self) -> &SslStream<S>; fn raw_stream_mut(&mut self) -> &mut SslStream<S>; }
Security Framework-specific extensions to TlsStream
.
Required Methods
fn raw_stream(&self) -> &SslStream<S>
Returns a shared reference to the Security Framework SslStream
.
fn raw_stream_mut(&mut self) -> &mut SslStream<S>
Returns a mutable reference to the Security Framework SslStream
.
Implementors
impl<S> TlsStreamExt<S> for TlsStream<S>