Enum fred::types::RedisValue
[−]
[src]
pub enum RedisValue { Integer(i64), String(String), Null, // some variants omitted }
A value used in a Redis command.
Variants
Integer(i64)
String(String)
Null
Methods
impl RedisValue
[src]
fn into_integer(self) -> Result<RedisValue, RedisValue>
Returns the original string as an error if the parsing fails, otherwise this consumes the original string.
fn kind(&self) -> RedisValueKind
Check the specific data type used to represent the value.
fn is_null(&self) -> bool
Check if the value is null.
fn is_integer(&self) -> bool
Check if the value is an integer.
fn is_string(&self) -> bool
Check if the value is a string.
fn is_float(&self) -> bool
Check if the inner string value can be coerced to an f64
.
fn into_u64(self) -> Option<u64>
Read and return the inner value as a u64
, if possible.
fn into_i64(self) -> Option<i64>
Read and return the inner value as a i64
, if possible.
fn into_f64(self) -> Option<f64>
Read and return the inner value as a f64
, if possible.
fn into_string(self) -> Option<String>
Read and return the inner String
if the value is a string or integer.
fn from_u64(d: u64) -> Result<RedisValue, RedisError>
Convert from a u64
to the i64
representation used by Redis. This can fail due to overflow so it is not implemented via the From trait.
fn from_usize(d: usize) -> Result<RedisValue, RedisError>
fn take(&mut self) -> RedisValue
Replace this RedisValue
instance with RedisValue::Null
, returning the original value.
Trait Implementations
impl Clone for RedisValue
[src]
fn clone(&self) -> RedisValue
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more
impl Debug for RedisValue
[src]
impl PartialEq for RedisValue
[src]
fn eq(&self, other: &RedisValue) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0
This method tests for !=
.
impl Eq for RedisValue
[src]
impl Hash for RedisValue
[src]
fn hash<H: Hasher>(&self, state: &mut H)
Feeds this value into the given [Hasher
]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl From<u8> for RedisValue
[src]
fn from(d: u8) -> RedisValue
Performs the conversion.
impl From<u16> for RedisValue
[src]
fn from(d: u16) -> RedisValue
Performs the conversion.
impl From<u32> for RedisValue
[src]
fn from(d: u32) -> RedisValue
Performs the conversion.
impl From<i8> for RedisValue
[src]
fn from(d: i8) -> RedisValue
Performs the conversion.
impl From<i16> for RedisValue
[src]
fn from(d: i16) -> RedisValue
Performs the conversion.
impl From<i32> for RedisValue
[src]
fn from(d: i32) -> RedisValue
Performs the conversion.
impl From<i64> for RedisValue
[src]
fn from(d: i64) -> RedisValue
Performs the conversion.
impl From<f32> for RedisValue
[src]
fn from(d: f32) -> RedisValue
Performs the conversion.
impl From<f64> for RedisValue
[src]
fn from(d: f64) -> RedisValue
Performs the conversion.
impl From<String> for RedisValue
[src]
fn from(d: String) -> RedisValue
Performs the conversion.
impl<'a> From<&'a str> for RedisValue
[src]
fn from(d: &'a str) -> RedisValue
Performs the conversion.
impl<'a> From<&'a String> for RedisValue
[src]
fn from(s: &'a String) -> RedisValue
Performs the conversion.
impl<T: Into<RedisValue>> From<Option<T>> for RedisValue
[src]
impl From<RedisKey> for RedisValue
[src]
fn from(d: RedisKey) -> RedisValue
Performs the conversion.