pub type Result<T> = Result<T, Error>;
A specialized Result type for mini-redis operations.
Result
This is defined as a convenience.
pub enum Result<T> { Ok(T), Err(Box<dyn Error + Sync + Send>), }
Contains the success value
Contains the error value