pub type Result<T, Err = Error> = Result<T, Err>;
A type alias for Result<T, Error>.
Result<T, Error>
This is the standard result type used throughout the crate.
pub enum Result<T, Err = Error> { Ok(T), Err(Err), }
Contains the success value
Contains the error value