Enum wry::application::event::DeviceEvent
source · [−]#[non_exhaustive]
pub enum DeviceEvent {
Added,
Removed,
MouseMotion {
delta: (f64, f64),
},
MouseWheel {
delta: MouseScrollDelta,
},
Motion {
axis: u32,
value: f64,
},
Button {
button: u32,
state: ElementState,
},
Key(RawKeyEvent),
Text {
codepoint: char,
},
}
Expand description
Represents raw hardware events that are not associated with any particular window.
Useful for interactions that diverge significantly from a conventional 2D GUI, such as 3D camera or first-person game controls. Many physical actions, such as mouse movement, can produce both device and window events. Because window events typically arise from virtual devices (corresponding to GUI cursors and keyboard focus) the device IDs may not match.
Note that these events are delivered regardless of input focus.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Added
Removed
MouseMotion
Fields
This variant is marked as non-exhaustive
Change in physical position of a pointing device.
This represents raw, unfiltered physical motion. Not to be confused with WindowEvent::CursorMoved
.
MouseWheel
Fields
This variant is marked as non-exhaustive
delta: MouseScrollDelta
Physical scroll event
Motion
Fields
This variant is marked as non-exhaustive
axis: u32
value: f64
Motion on some analog axis. This event will be reported for all arbitrary input devices that tao supports on this platform, including mouse devices. If the device is a mouse device then this will be reported alongside the MouseMotion event.
Button
Fields
This variant is marked as non-exhaustive
state: ElementState
Key(RawKeyEvent)
Text
Fields
This variant is marked as non-exhaustive
codepoint: char
Trait Implementations
sourceimpl Clone for DeviceEvent
impl Clone for DeviceEvent
sourcepub fn clone(&self) -> DeviceEvent
pub fn clone(&self) -> DeviceEvent
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for DeviceEvent
impl Debug for DeviceEvent
sourceimpl PartialEq<DeviceEvent> for DeviceEvent
impl PartialEq<DeviceEvent> for DeviceEvent
sourcepub fn eq(&self, other: &DeviceEvent) -> bool
pub fn eq(&self, other: &DeviceEvent) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcepub fn ne(&self, other: &DeviceEvent) -> bool
pub fn ne(&self, other: &DeviceEvent) -> bool
This method tests for !=
.
impl StructuralPartialEq for DeviceEvent
Auto Trait Implementations
impl RefUnwindSafe for DeviceEvent
impl Send for DeviceEvent
impl Sync for DeviceEvent
impl Unpin for DeviceEvent
impl UnwindSafe for DeviceEvent
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