bevy_utils

Type Alias BoxedFuture

Source
pub type BoxedFuture<'a, T> = Pin<Box<dyn ConditionalSendFuture<Output = T> + 'a>>;
Available on crate feature alloc only.
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> {}