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