redis_rs 0.9.0

Simple redis client library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[derive(Debug, PartialEq)]
/// The type the response data will be according to RESP specification
/// https://redis.io/topics/protocol
pub enum RedisResponse {
    /// Equivalent to String
    SimpleString(String),
    /// The server replied with an error
    Error(String),
    /// A numeric string that can be parsed
    Integer(i32),
    /// A string with known size
    BulkString(String),
    /// An array
    Array(String),
}