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