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