Type Definition bevy::asset::BoxedFuture

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

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