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

Returns a shared reference to the Security Framework SslStream.

Returns a mutable reference to the Security Framework SslStream.

Implementors