Struct comfy_wgpu::egui::ModifierNames
source · pub struct ModifierNames<'a> {
pub is_short: bool,
pub alt: &'a str,
pub ctrl: &'a str,
pub shift: &'a str,
pub mac_cmd: &'a str,
pub mac_alt: &'a str,
pub concat: &'a str,
}Expand description
Names of different modifier keys.
Used to name modifiers.
Fields§
§is_short: bool§alt: &'a str§ctrl: &'a str§shift: &'a str§mac_cmd: &'a str§mac_alt: &'a str§concat: &'a strWhat goes between the names
Implementations§
source§impl ModifierNames<'static>
impl ModifierNames<'static>
sourcepub const SYMBOLS: ModifierNames<'static> = _
pub const SYMBOLS: ModifierNames<'static> = _
⌥ ^ ⇧ ⌘ - NOTE: not supported by the default egui font.
sourcepub const NAMES: ModifierNames<'static> = _
pub const NAMES: ModifierNames<'static> = _
Alt, Ctrl, Shift, Cmd
Trait Implementations§
source§impl<'a> Clone for ModifierNames<'a>
impl<'a> Clone for ModifierNames<'a>
source§fn clone(&self) -> ModifierNames<'a>
fn clone(&self) -> ModifierNames<'a>
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<'a> Debug for ModifierNames<'a>
impl<'a> Debug for ModifierNames<'a>
source§impl<'a> PartialEq<ModifierNames<'a>> for ModifierNames<'a>
impl<'a> PartialEq<ModifierNames<'a>> for ModifierNames<'a>
source§fn eq(&self, other: &ModifierNames<'a>) -> bool
fn eq(&self, other: &ModifierNames<'a>) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl<'a> Copy for ModifierNames<'a>
impl<'a> Eq for ModifierNames<'a>
impl<'a> StructuralEq for ModifierNames<'a>
impl<'a> StructuralPartialEq for ModifierNames<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for ModifierNames<'a>
impl<'a> Send for ModifierNames<'a>
impl<'a> Sync for ModifierNames<'a>
impl<'a> Unpin for ModifierNames<'a>
impl<'a> UnwindSafe for ModifierNames<'a>
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.