pub trait EventCode<T>{
const COUNT: T;
const MAX: T;
// Provided method
fn iter() -> IntoIter<Self, T> ⓘ { ... }
}
Expand description
Trait common to all event codes
Required Associated Constants§
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.