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