pub type AudisResult<T> = RedisResult<T>;
pub enum AudisResult<T> { Ok(T), Err(RedisError), }
Contains the success value
Contains the error value