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