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