alloy_transport

Type Alias BoxFuture

source
pub type BoxFuture<'a, T> = Pin<Box<dyn Future<Output = T> + Send + 'a>>;
Expand description

Type alias for a pin-boxed future, with a Send bound on non-wasm targets.

Aliased Typeยง

struct BoxFuture<'a, T> {}