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 const unsafe fn dummy() -> Self
pub const unsafe fn dummy() -> Self
Returns a dummy id, useful for unit testing.
§Safety
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§
Source§impl DeviceIdExtWindows for DeviceId
impl DeviceIdExtWindows for DeviceId
Source§impl Ord for DeviceId
impl Ord for DeviceId
Source§impl PartialOrd for DeviceId
impl PartialOrd for DeviceId
impl Copy for DeviceId
impl Eq 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 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