pub type BoxedCondition<In = ()> = Box<dyn ReadOnlySystem<Out = bool, In = In>>;
A type-erased run condition stored in a Box.
Box
struct BoxedCondition<In = ()>(/* private fields */);