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