pub type Result<T> = Result<T, OatError>;
Type alias for results using OatError
pub enum Result<T> { Ok(T), Err(OatError), }
Contains the success value
Contains the error value