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