pub type HttpResult<T> = Result<T, HttpError>;Expand description
Result alias for transport-only error paths (e.g. helpers that
don’t have a per-operation error type). Generated operation
methods use ApiOpError directly.
Aliased Type§
pub enum HttpResult<T> {
Ok(T),
Err(HttpError),
}