Enum redis_async::resp::RespValue [] [src]

pub enum RespValue {
    Array(Vec<RespValue>),
    BulkString(Vec<u8>),
    Error(String),
    Integer(usize),
    SimpleString(String),
}

Variants

Methods

impl RespValue
[src]

Trait Implementations

impl Debug for RespValue
[src]

Formats the value using the given formatter.

impl Clone for RespValue
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Eq for RespValue
[src]

impl PartialEq for RespValue
[src]

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

This method tests for !=.

impl<T: ToResp> From<T> for RespValue
[src]

Performs the conversion.