pub struct DeviceId(/* private fields */);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§
Source§impl DeviceId
impl DeviceId
Sourcepub unsafe fn dummy() -> Self
pub unsafe fn dummy() -> Self
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 winit function will result in undefined behavior.
Trait Implementations§
impl Copy for DeviceId
impl Eq for DeviceId
Source§impl Ord for DeviceId
impl Ord for DeviceId
1.21.0 (const: unstable) · 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 PartialOrd for DeviceId
impl PartialOrd for DeviceId
impl StructuralPartialEq for DeviceId
Auto Trait Implementations§
impl Freeze for DeviceId
impl RefUnwindSafe for DeviceId
impl Send for DeviceId
impl Sync for DeviceId
impl Unpin for DeviceId
impl UnsafeUnpin for DeviceId
impl UnwindSafe for DeviceId
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