pub struct KeyPressed {
pub key: Key,
pub code: Option<Code>,
pub text: Option<String>,
pub modifiers: Modifiers,
}
Expand description
An event fired when a key is pressed.
Fields§
§key: Key
The key that was pressed, ignoring modifiers.
code: Option<Code>
The code of the key that was pressed.
text: Option<String>
The text that was entered.
modifiers: Modifiers
The modifiers that were active.
Implementations§
Trait Implementations§
Source§impl Clone for KeyPressed
impl Clone for KeyPressed
Source§fn clone(&self) -> KeyPressed
fn clone(&self) -> KeyPressed
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 moreAuto Trait Implementations§
impl Freeze for KeyPressed
impl RefUnwindSafe for KeyPressed
impl Send for KeyPressed
impl Sync for KeyPressed
impl Unpin for KeyPressed
impl UnwindSafe for KeyPressed
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