Enum rlite::Reply [] [src]

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

A command reply

Variants

Trait Implementations

impl Clone for Reply
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Reply
[src]

Formats the value using the given formatter.

impl PartialEq for Reply
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.