#[repr(usize)]pub enum PointingDeviceType {
Unknown = 0,
Pen = 1,
Cursor = 2,
Eraser = 3,
}Variants§
Trait Implementations§
Source§impl Clone for PointingDeviceType
impl Clone for PointingDeviceType
Source§fn clone(&self) -> PointingDeviceType
fn clone(&self) -> PointingDeviceType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PointingDeviceType
Source§impl Debug for PointingDeviceType
impl Debug for PointingDeviceType
impl Eq for PointingDeviceType
Source§impl PartialEq for PointingDeviceType
impl PartialEq for PointingDeviceType
Source§fn eq(&self, other: &PointingDeviceType) -> bool
fn eq(&self, other: &PointingDeviceType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PointingDeviceType
Auto Trait Implementations§
impl Freeze for PointingDeviceType
impl RefUnwindSafe for PointingDeviceType
impl Send for PointingDeviceType
impl Sync for PointingDeviceType
impl Unpin for PointingDeviceType
impl UnsafeUnpin for PointingDeviceType
impl UnwindSafe for PointingDeviceType
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