pub type Result<T> = Result<T, Error<T>>;
Result type with Error as error variant.
Error
pub enum Result<T> { Ok(T), Err(Error<T>), }
Contains the success value
Contains the error value