Struct comfy_wgpu::egui::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: KeyImplementations§
source§impl KeyboardShortcut
impl KeyboardShortcut
pub const fn new(modifiers: Modifiers, key: Key) -> KeyboardShortcut
pub fn format(&self, names: &ModifierNames<'_>, is_mac: bool) -> String
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 ==.impl Copy for KeyboardShortcut
impl Eq for KeyboardShortcut
impl StructuralEq for KeyboardShortcut
impl StructuralPartialEq for KeyboardShortcut
Auto Trait Implementations§
impl RefUnwindSafe for KeyboardShortcut
impl Send for KeyboardShortcut
impl Sync for KeyboardShortcut
impl Unpin for KeyboardShortcut
impl UnwindSafe for KeyboardShortcut
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
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.