Type Alias HttpResult
pub type HttpResult<T> = Result<T, Error>;Available on crate feature
http only.Expand description
A Result typedef to use with the http::Error type
Aliased Type§
pub enum HttpResult<T> {
Ok(T),
Err(Error),
}