Enum hiredis::Reply [] [src]

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

A reply of a command.

Variants

Trait Implementations

impl Debug for Reply
[src]

Formats the value using the given formatter.