Type Definition amethyst::ecs::common::BoxedFuture [−]
type BoxedFuture<T> = Box<Future<Item = T, Error = BoxedErr> + 'static + Sync + Send>;
A boxed, thread-safe future with T as item and BoxedErr as error type.