pub type HlcResult<T> = Result<T, HlcError>;
HLC result type.
pub enum HlcResult<T> { Ok(T), Err(HlcError), }
Contains the success value
Contains the error value