pub enum EV_REL {
Show 14 variants
REL_X = 0,
REL_Y = 1,
REL_Z = 2,
REL_RX = 3,
REL_RY = 4,
REL_RZ = 5,
REL_HWHEEL = 6,
REL_DIAL = 7,
REL_WHEEL = 8,
REL_MISC = 9,
REL_RESERVED = 10,
REL_WHEEL_HI_RES = 11,
REL_HWHEEL_HI_RES = 12,
REL_MAX = 15,
}
Variants§
REL_X = 0
REL_Y = 1
REL_Z = 2
REL_RX = 3
REL_RY = 4
REL_RZ = 5
REL_HWHEEL = 6
REL_DIAL = 7
REL_WHEEL = 8
REL_MISC = 9
REL_RESERVED = 10
REL_WHEEL_HI_RES = 11
REL_HWHEEL_HI_RES = 12
REL_MAX = 15
Trait Implementations§
source§impl<'de> Deserialize<'de> for EV_REL
impl<'de> Deserialize<'de> for EV_REL
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Ord for EV_REL
impl Ord for EV_REL
source§impl PartialEq for EV_REL
impl PartialEq for EV_REL
source§impl PartialOrd for EV_REL
impl PartialOrd for EV_REL
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for EV_REL
impl Eq for EV_REL
impl StructuralPartialEq for EV_REL
Auto Trait Implementations§
impl Freeze for EV_REL
impl RefUnwindSafe for EV_REL
impl Send for EV_REL
impl Sync for EV_REL
impl Unpin for EV_REL
impl UnwindSafe for EV_REL
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more