#[non_exhaustive]#[repr(u32)]pub enum AxisRelativeDirection {
Identical = 0,
Inverted = 1,
}
Expand description
axis relative direction
This specifies the direction of the physical motion that caused a wl_pointer.axis event, relative to the wl_pointer.axis direction.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Identical = 0
physical motion matches axis direction
Since version 1.
Inverted = 1
physical motion is the inverse of the axis direction
Since version 1.
Trait Implementations§
Source§impl Clone for AxisRelativeDirection
impl Clone for AxisRelativeDirection
Source§fn clone(&self) -> AxisRelativeDirection
fn clone(&self) -> AxisRelativeDirection
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AxisRelativeDirection
impl Debug for AxisRelativeDirection
Source§impl From<AxisRelativeDirection> for u32
impl From<AxisRelativeDirection> for u32
Source§fn from(val: AxisRelativeDirection) -> u32
fn from(val: AxisRelativeDirection) -> u32
Converts to this type from the input type.
Source§impl Hash for AxisRelativeDirection
impl Hash for AxisRelativeDirection
Source§impl PartialEq for AxisRelativeDirection
impl PartialEq for AxisRelativeDirection
Source§impl TryFrom<u32> for AxisRelativeDirection
impl TryFrom<u32> for AxisRelativeDirection
impl Copy for AxisRelativeDirection
impl Eq for AxisRelativeDirection
impl StructuralPartialEq for AxisRelativeDirection
Auto Trait Implementations§
impl Freeze for AxisRelativeDirection
impl RefUnwindSafe for AxisRelativeDirection
impl Send for AxisRelativeDirection
impl Sync for AxisRelativeDirection
impl Unpin for AxisRelativeDirection
impl UnwindSafe for AxisRelativeDirection
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