pub type RedisValueResult = RedisResult<RedisValue>;
Expand description
A RedisResult with RedisValue.
Aliased Type§
enum RedisValueResult {
Ok(RedisValue),
Err(RedisError),
}
Variants§
Trait Implementations§
Source§impl From<RedisError> for RedisValueResult
impl From<RedisError> for RedisValueResult
Source§fn from(v: RedisError) -> Self
fn from(v: RedisError) -> Self
Converts to this type from the input type.
Source§impl From<RedisValue> for RedisValueResult
impl From<RedisValue> for RedisValueResult
Source§fn from(v: RedisValue) -> Self
fn from(v: RedisValue) -> Self
Converts to this type from the input type.