pub type HttpResult = Result<Response<Body>, ApiError>;
pub enum HttpResult { Ok(Response<Body>), Err(ApiError), }
Contains the success value
Contains the error value