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

A TLS-wrapped connection to a PostgreSQL database.

Required Methods

Returns channel binding information for the session.

Implementors