Trait PgByteStream

Source
pub trait PgByteStream:
    AsyncWrite
    + AsyncRead
    + Unpin
    + Send
    + 'static { }
Expand description

Trait for a byte stream that can be used for pg protocol.

Implementors§

Source§

impl<S> PgByteStream for S
where S: AsyncWrite + AsyncRead + Unpin + Send + 'static,