Struct winit::event::KeyboardInput
source · pub struct KeyboardInput {
pub scancode: ScanCode,
pub state: ElementState,
pub virtual_keycode: Option<VirtualKeyCode>,
pub modifiers: ModifiersState,
}
Expand description
Describes a keyboard input event.
Fields§
§scancode: ScanCode
Identifies the physical key pressed
This should not change if the user adjusts the host’s keyboard map. Use when the physical location of the key is more important than the key’s host GUI semantics, such as for movement controls in a first-person game.
state: ElementState
§virtual_keycode: Option<VirtualKeyCode>
Identifies the semantic meaning of the key
Use when the semantics of the key are more important than the physical location of the key, such as when implementing appropriate behavior for “page up.”
modifiers: ModifiersState
👎Deprecated: Deprecated in favor of WindowEvent::ModifiersChanged
Modifier keys active at the time of this input.
This is tracked internally to avoid tracking errors arising from modifier key state changes when events from this device are not being delivered to the application, e.g. due to keyboard focus being elsewhere.
Trait Implementations§
source§impl Clone for KeyboardInput
impl Clone for KeyboardInput
source§fn clone(&self) -> KeyboardInput
fn clone(&self) -> KeyboardInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for KeyboardInput
impl Debug for KeyboardInput
source§impl<'de> Deserialize<'de> for KeyboardInput
impl<'de> Deserialize<'de> for KeyboardInput
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Hash for KeyboardInput
impl Hash for KeyboardInput
source§impl PartialEq for KeyboardInput
impl PartialEq for KeyboardInput
source§fn eq(&self, other: &KeyboardInput) -> bool
fn eq(&self, other: &KeyboardInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for KeyboardInput
impl Serialize for KeyboardInput
impl Copy for KeyboardInput
impl Eq for KeyboardInput
impl StructuralEq for KeyboardInput
impl StructuralPartialEq for KeyboardInput
Auto Trait Implementations§
impl RefUnwindSafe for KeyboardInput
impl Send for KeyboardInput
impl Sync for KeyboardInput
impl Unpin for KeyboardInput
impl UnwindSafe for KeyboardInput
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