pub trait EvdevEnum: Copy + 'static {
// Required methods
fn from_index(i: usize) -> Self;
fn to_index(self) -> usize;
}Available on Unix only.
Required 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.