pub type RedisResult<T = RedisValue> = Result<T, RedisError>;
Expand description
A short-hand type that stores a std::result::Result with custom type and RedisError.
Aliased Type§
enum RedisResult<T = RedisValue> {
Ok(T),
Err(RedisError),
}
pub type RedisResult<T = RedisValue> = Result<T, RedisError>;
A short-hand type that stores a std::result::Result with custom type and RedisError.
enum RedisResult<T = RedisValue> {
Ok(T),
Err(RedisError),
}