pub type BoxFuture<'a, T> = Pin<Box<dyn Future<Output = T> + Send + 'a>>;
Type alias for a pin-boxed future, with a Send bound on non-wasm targets.
Send
struct BoxFuture<'a, T> {}