Enum redis_client::results::RedisResult
[−]
[src]
pub enum RedisResult {
Array(Vec<RedisResult>),
Bytes(Vec<u8>),
String(String),
Int(i64),
Nil,
}Variants
Array | |
Bytes | |
String | |
Int | |
Nil |
Methods
impl RedisResult
fn convert<T: From<RedisResult>>(self) -> T
Method to convert a RedisResult into another type