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