pub type BoxPlatformSendFuture<'a, T> = Pin<Box<dyn PlatformSendFuture<Output = T> + 'a>>;Expand description
An owned dynamically typed Future that only requires Send on native platforms, but not on WASM.
Aliased Typeยง
pub struct BoxPlatformSendFuture<'a, T> { /* private fields */ }