pub type HttpResult = Result<Response, Error>;
A result of waiting for a pending request.
enum HttpResult { Ok(Response), Err(Error), }
Contains the success value
Contains the error value