Type Alias valence::ecs::schedule::BoxedCondition
pub type BoxedCondition<In = ()> = Box<dyn ReadOnlySystem<In = In, Out = bool>>;
Expand description
A type-erased run condition stored in a Box
.
Aliased Typeยง
struct BoxedCondition<In = ()>(/* private fields */);