Type Alias AsyncPendingRequestTuple

Source
pub type AsyncPendingRequestTuple<Req, Resp> = (Req, Option<AsyncResponseSender<Resp>>);
Expand description

A tracked or untracked asynchronous request, paired with an optional response sender.

If Some(sender) is present, the response will be delivered through it. If None, the response is expected to be emitted as an Event instead.