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> StructuralPartialEq for ModifierNames<'a>
Auto Trait Implementations§
impl<'a> Freeze for ModifierNames<'a>
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
source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more