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