pub type BoxedFuture<'a, T> = Pin<Box<dyn Future<Output = T> + Send + 'a>>;Available on non-WebAssembly only.
Expand description
BoxedFuture is the type alias of [futures::future::BoxFuture].
Aliased Typeยง
pub struct BoxedFuture<'a, T> { /* private fields */ }