Type Alias BoxedFut

Source
pub type BoxedFut<Output> = Pin<Box<dyn Future<Output = TransportResult<Output>> + Send>>;
Expand description

Boxed future type used in ProviderCall for non-wasm targets.

Aliased Typeยง

struct BoxedFut<Output> {}