pub type BoxFuture<'a, T> = Pin<Box<dyn Future<Output = T> + Send + 'a>>;
Future that is Send unless targeting WASM
Send
struct BoxFuture<'a, T> {}