pub type BoxFuture<'a, T> = Pin<Box<dyn Future<Output = T> + Send + 'a>>;
Future that is Send unless targeting WASM
Send
#[repr(transparent)]pub struct BoxFuture<'a, T> { /* private fields */ }