pub type RedisResult<T> = Result<T, RedisError>;Expand description
Library generic result type.
Aliased Type§
pub enum RedisResult<T> {
Ok(T),
Err(RedisError),
}pub type RedisResult<T> = Result<T, RedisError>;Library generic result type.
pub enum RedisResult<T> {
Ok(T),
Err(RedisError),
}