pub type AsyncResponseResult = Result<AsyncResponseBody>;
Expand description

异步 HTTP 响应结果

Aliased Type§

enum AsyncResponseResult {
    Ok(Response<AsyncResponseBody>),
    Err(Error),
}

Variants§

§1.0.0

Ok(Response<AsyncResponseBody>)

Contains the success value

§1.0.0

Err(Error)

Contains the error value