pub trait ObserverSystem<E, B, Out = ()>: System<In = On<'static, 'static, E, B>, Out = Out> + Send + 'staticwhere E: Event, B: Bundle,{ }
Implemented for Systems that have On as the first argument.
System
On
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".