pub type BoxedCondition<In = ()> = Box<dyn ReadOnlySystem<Out = bool, In = In>>;
Expand description

A type-erased run condition stored in a Box.

Aliased Type§

struct BoxedCondition<In = ()>(/* private fields */);