pub type HttpResult<T> = Result<T, Error>;
A Result typedef to use with the http::Error type
Result
http::Error
pub enum HttpResult<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value