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