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