pub type BoxFuture<T> = Pin<Box<dyn Future<Output = T> + Send>>;
A pinned, heap-allocated future that resolves to T and is Send.
T
Send
pub struct BoxFuture<T> { /* private fields */ }