pub trait EventType: 'static {
type Handler<S: Subsystem>;
type Wrapper: Send + Sync + 'static;
}Expand description
Type of an event.
Required Associated Types§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".