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>)
Trait Implementations
impl Debug for RedisValue
[src]
impl Debug for RedisValue
[src]impl<T: Into<RedisValue>> From<Option<T>> for RedisValue
[src]
impl<T: Into<RedisValue>> From<Option<T>> for RedisValue
[src]impl<T: Into<RedisValue>> From<Vec<T, Global>> for RedisValue
[src]
impl<T: Into<RedisValue>> From<Vec<T, Global>> for RedisValue
[src]impl PartialEq<RedisValue> for RedisValue
[src]
impl PartialEq<RedisValue> for RedisValue
[src]fn eq(&self, other: &RedisValue) -> bool
[src]
fn eq(&self, other: &RedisValue) -> bool
[src]This method tests for self
and other
values to be equal, and is used
by ==
. Read more
fn ne(&self, other: &RedisValue) -> bool
[src]
fn ne(&self, other: &RedisValue) -> bool
[src]This method tests for !=
.