pub struct DeviceId(_);
Expand description
Identifier of an input device.
Whenever you receive an event arising from a particular input device, this event contains a DeviceId
which
identifies its origin. Note that devices may be virtual (representing an on-screen cursor and keyboard focus) or
physical. Virtual devices typically aggregate inputs from multiple physical devices.
Implementations
sourceimpl DeviceId
impl DeviceId
sourcepub unsafe fn dummy() -> DeviceId
pub unsafe fn dummy() -> DeviceId
Safety
Returns a dummy DeviceId
, useful for unit testing. The only guarantee made about the return
value of this function is that it will always be equal to itself and to future values returned
by this function. No other guarantees are made. This may be equal to a real DeviceId
.
Passing this into a tao function will result in undefined behavior.
Trait Implementations
sourceimpl Ord for DeviceId
impl Ord for DeviceId
sourceimpl PartialOrd<DeviceId> for DeviceId
impl PartialOrd<DeviceId> for DeviceId
sourcepub fn partial_cmp(&self, other: &DeviceId) -> Option<Ordering>
pub fn partial_cmp(&self, other: &DeviceId) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn 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 more
impl Copy for DeviceId
impl Eq for DeviceId
impl StructuralEq for DeviceId
impl StructuralPartialEq for DeviceId
Auto Trait Implementations
impl RefUnwindSafe for DeviceId
impl Send for DeviceId
impl Sync for DeviceId
impl Unpin for DeviceId
impl UnwindSafe for DeviceId
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more