redis-asyncx 0.1.0

An asynchronous Redis client library and a Redis CLI built in Rust.
Documentation
1
2
3
4
5
6
7
8
/// A Redis PUBLISH command.
#[allow(dead_code)]
pub struct Publish {
    channel: String,
    message: String,
}

impl Publish {}