pub trait BitValue: Copy + BitValueImpl {
const MAX: Self;
}Expand description
Types that can be used in BitSet.
This is a sealed trait with no interface. It is implemented for types in this library that
evdev reports to userspace using bitfields.
Required Associated Constants§
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.