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