pub type BoxedSystem<In = (), Out = ()> = Box<dyn System<In = In, Out = Out>>;
A convenience type alias for a boxed System trait object.
System
struct BoxedSystem<In = (), Out = ()>(/* private fields */);