pub enum RelativeAxis {
X,
Y,
Z,
RX,
RY,
RZ,
Wheel,
WheelHiRes,
Other(u16),
}
Variants§
Implementations§
Source§impl RelativeAxis
impl RelativeAxis
Trait Implementations§
Source§impl Clone for RelativeAxis
impl Clone for RelativeAxis
Source§fn clone(&self) -> RelativeAxis
fn clone(&self) -> RelativeAxis
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 RelativeAxis
impl Debug for RelativeAxis
Source§impl Display for RelativeAxis
impl Display for RelativeAxis
Source§impl From<RelativeAxis> for u16
impl From<RelativeAxis> for u16
Source§fn from(value: RelativeAxis) -> Self
fn from(value: RelativeAxis) -> Self
Converts to this type from the input type.
Source§impl From<u16> for RelativeAxis
impl From<u16> for RelativeAxis
Source§impl Hash for RelativeAxis
impl Hash for RelativeAxis
Source§impl PartialEq for RelativeAxis
impl PartialEq for RelativeAxis
impl Copy for RelativeAxis
impl Eq for RelativeAxis
impl StructuralPartialEq for RelativeAxis
Auto Trait Implementations§
impl Freeze for RelativeAxis
impl RefUnwindSafe for RelativeAxis
impl Send for RelativeAxis
impl Sync for RelativeAxis
impl Unpin for RelativeAxis
impl UnwindSafe for RelativeAxis
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