pub type WasmBoxedFuture<'a, T> = Pin<Box<dyn Future<Output = T> + Send + 'a>>;
A boxed future that is Send on native and unbound on WASM.
Send
pub struct WasmBoxedFuture<'a, T> { /* private fields */ }