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