pub struct ShortcutEvent {
pub shortcut: Shortcut,
pub state: ShortcutState,
}
Expand description
Event emitted when a shortcut is pressed or released.
Fields§
§shortcut: Shortcut
§state: ShortcutState
Trait Implementations§
Source§impl Clone for ShortcutEvent
impl Clone for ShortcutEvent
Source§fn clone(&self) -> ShortcutEvent
fn clone(&self) -> ShortcutEvent
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for ShortcutEvent
impl RefUnwindSafe for ShortcutEvent
impl Send for ShortcutEvent
impl Sync for ShortcutEvent
impl Unpin for ShortcutEvent
impl UnwindSafe for ShortcutEvent
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