pub type PinBoxFutureSend<T> = Pin<Box<dyn Future<Output = T> + Send>>;Expand description
A type alias for a pinned, boxed, Send-able future with a generic output.
This is often used to represent an asynchronous task that can be sent across threads.
Aliased Typeยง
pub struct PinBoxFutureSend<T> { /* private fields */ }