Trait postgres::tls::TlsStream [] [src]

pub trait TlsStream: Debug + Read + Write + Send {
    fn get_ref(&self) -> &Stream;
fn get_mut(&mut self) -> &mut Stream; }

A trait implemented by TLS streams.

Required Methods

Returns a reference to the underlying Stream.

Returns a mutable reference to the underlying Stream.

Implementors