Type Alias AsyncResponseReceiver

Source
pub type AsyncResponseReceiver<Resp> = Receiver<ResponseResult<Resp>>;
Expand description

A oneshot receiver used to await the result of a tracked async request.

Awaiting this will yield the final response or error once the server replies.

Aliased Typeยง

struct AsyncResponseReceiver<Resp> { /* private fields */ }