pub type HttpResult = Result<Response<ResponseBody>>;Expand description
HTTP response result with ResponseBody.
Aliased Type§
pub enum HttpResult {
Ok(Response<ResponseBody>),
Err(YetiError),
}Variants§
Ok(Response<ResponseBody>)
Contains the success value
Err(YetiError)
Contains the error value