Struct 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 str
What goes between the names
Implementations§
source§impl ModifierNames<'static>
impl ModifierNames<'static>
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 for ModifierNames<'a>
impl<'a> PartialEq 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