Skip to main content

WasmBoxedFuture

Type Alias WasmBoxedFuture 

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

A boxed future that is Send on native and unbound on WASM.

Aliased Type§

pub struct WasmBoxedFuture<'a, T> { /* private fields */ }