Struct redis_async::client::ClientConnection
[−]
[src]
pub struct ClientConnection { pub sender: Box<Sink<SinkItem = RespValue, SinkError = Error>>, pub receiver: Box<Stream<Item = RespValue, Error = Error>>, }
A low-level client connection representing a sender and a receiver.
The two halves operate independently from one another
Fields
sender: Box<Sink<SinkItem = RespValue, SinkError = Error>>
receiver: Box<Stream<Item = RespValue, Error = Error>>