pub trait TlsStream: AsyncRead + AsyncWrite {
// Required method
fn channel_binding(&self) -> ChannelBinding;
}Expand description
A TLS-wrapped connection to a PostgreSQL database.
Required Methods§
Sourcefn channel_binding(&self) -> ChannelBinding
fn channel_binding(&self) -> ChannelBinding
Returns channel binding information for the session.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".