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