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