pub trait EvdevEnum: Copy + 'static {
// Required methods
fn from_index(i: usize) -> Self;
fn to_index(self) -> usize;
}Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".