Enum hiredis::Reply [] [src]

pub enum Reply {
    Status(String),
    Integer(i64),
    Bulk(Vec<u8>),
    Array(Vec<Reply>),
    Nil,
}

A reply of a command.

Variants

Status(String)Integer(i64)Bulk(Vec<u8>)Array(Vec<Reply>)Nil

Trait Implementations

impl Debug for Reply
[src]

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

Formats the value using the given formatter.