Struct redis_async::client::connect::ClientConnection [] [src]

pub struct ClientConnection {
    pub sender: Box<Sink<SinkItem = RespValue, SinkError = Error> + Send>,
    pub receiver: Box<Stream<Item = RespValue, Error = Error> + Send>,
}

A low-level client connection representing a sender and a receiver.

The two halves operate independently from one another

Fields

Trait Implementations

Auto Trait Implementations