pub type BoxFuture<T> = Pin<Box<dyn Future<Output = T> + Send>>;
A type used for a future.
It must include a Send trait to be usable for the FutureQueue
Send
FutureQueue
pub struct BoxFuture<T> { /* private fields */ }