pub type MaybeSendBoxFuture<'a, T> = Pin<Box<dyn Future<Output = T> + Send + 'a>>;Expand description
A boxed future that is Send on native/WASI targets and local in browser WASM.
Aliased Typeยง
pub struct MaybeSendBoxFuture<'a, T> { /* private fields */ }