#[non_exhaustive]pub struct AxisRelativeDirection(pub u32);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.
Tuple Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.0: u32Implementations§
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 Ord for AxisRelativeDirection
impl Ord for AxisRelativeDirection
Source§fn cmp(&self, other: &AxisRelativeDirection) -> Ordering
fn cmp(&self, other: &AxisRelativeDirection) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AxisRelativeDirection
impl PartialEq for AxisRelativeDirection
Source§impl PartialOrd for AxisRelativeDirection
impl PartialOrd 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 UnsafeUnpin 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