Struct egui::data::input::KeyboardShortcut
source · pub struct KeyboardShortcut {
pub modifiers: Modifiers,
pub key: Key,
}
Expand description
A keyboard shortcut, e.g. Ctrl+Alt+W
.
Can be used with crate::InputState::consume_shortcut
and crate::Context::format_shortcut
.
Fields§
§modifiers: Modifiers
§key: Key
Implementations§
Trait Implementations§
source§impl Clone for KeyboardShortcut
impl Clone for KeyboardShortcut
source§fn clone(&self) -> KeyboardShortcut
fn clone(&self) -> KeyboardShortcut
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 KeyboardShortcut
impl Debug for KeyboardShortcut
source§impl Hash for KeyboardShortcut
impl Hash for KeyboardShortcut
source§impl PartialEq<KeyboardShortcut> for KeyboardShortcut
impl PartialEq<KeyboardShortcut> for KeyboardShortcut
source§fn eq(&self, other: &KeyboardShortcut) -> bool
fn eq(&self, other: &KeyboardShortcut) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.