pub type HttpResult<T> = Result<T, HttpError>;Expand description
The result of an HTTP request.
Often times, the type argument T is either a String, or a type that
can be deserialized with serde_json.
Aliased Type§
pub enum HttpResult<T> {
Ok(T),
Err(HttpError),
}