Enum redis_client::results::RedisResult [] [src]

pub enum RedisResult {
    Array(Vec<RedisResult>),
    Bytes(Vec<u8>),
    String(String),
    Int(i64),
    Nil,
}

Variants

Array(Vec<RedisResult>)Bytes(Vec<u8>)String(String)Int(i64)Nil

Methods

impl RedisResult
[src]

fn convert<T: From<RedisResult>>(self) -> T

Trait Implementations

impl Debug for RedisResult
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Display for RedisResult
[src]

fn fmt(&self, f: &mut Formatter) -> Result

Formats the value using the given formatter.