Type Alias bevy::utils::BoxedFuture

pub type BoxedFuture<'a, T> = Pin<Box<dyn ConditionalSendFuture<Output = T> + 'a>>;
Expand description

An owned and dynamically typed Future used when you can’t statically type your result or need to add some indirection.

Aliased Type§

struct BoxedFuture<'a, T> { /* private fields */ }