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

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

Variants

Methods

impl RedisResult
[src]

Method to convert a RedisResult into another type

Trait Implementations

impl Debug for RedisResult
[src]

Formats the value using the given formatter.

impl Clone for RedisResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Display for RedisResult
[src]

Formats the value using the given formatter. Read more