[][src]Trait roa_pg::tls::TlsStream

pub trait TlsStream: AsyncRead + AsyncWrite {
    fn channel_binding(&self) -> ChannelBinding;
}

A TLS-wrapped connection to a PostgreSQL database.

Required methods

fn channel_binding(&self) -> ChannelBinding

Returns channel binding information for the session.

Loading content...

Implementors

impl TlsStream for NoTlsStream[src]

impl<IO> TlsStream for TlsStream<IO> where
    IO: AsyncRead + AsyncWrite + Unpin
[src]

Loading content...