Enum redis_module::redisvalue::RedisValue[][src]

pub enum RedisValue {
    SimpleStringStatic(&'static str),
    SimpleString(String),
    BulkString(String),
    Integer(i64),
    Float(f64),
    Array(Vec<RedisValue>),
    Null,
    NoReply,
}

Variants

SimpleStringStatic(&'static str)
SimpleString(String)
BulkString(String)
Integer(i64)
Float(f64)
Array(Vec<RedisValue>)
Null
NoReply

Trait Implementations

impl Debug for RedisValue[src]

impl From<&'_ String> for RedisValue[src]

impl From<&'_ str> for RedisValue[src]

impl From<()> for RedisValue[src]

impl<T: Into<RedisValue>> From<Option<T>> for RedisValue[src]

impl From<String> for RedisValue[src]

impl<T: Into<RedisValue>> From<Vec<T, Global>> for RedisValue[src]

impl From<f64> for RedisValue[src]

impl From<i64> for RedisValue[src]

impl From<usize> for RedisValue[src]

impl PartialEq<RedisValue> for RedisValue[src]

impl StructuralPartialEq for RedisValue[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.