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