Enum egui::Key [−][src]
pub enum Key {
Show variants
ArrowDown,
ArrowLeft,
ArrowRight,
ArrowUp,
Escape,
Tab,
Backspace,
Enter,
Space,
Insert,
Delete,
Home,
End,
PageUp,
PageDown,
Num0,
Num1,
Num2,
Num3,
Num4,
Num5,
Num6,
Num7,
Num8,
Num9,
A,
B,
C,
D,
E,
F,
G,
H,
I,
J,
K,
L,
M,
N,
O,
P,
Q,
R,
S,
T,
U,
V,
W,
X,
Y,
Z,
}Keyboard keys.
Includes all keys egui is interested in (such as Home and End)
plus a few that are useful for detecting keyboard shortcuts.
Many keys are omitted because they are not always physical keys (depending on keyboard language), e.g. ; and §,
and are therefor unsuitable as keyboard shortcuts if you want your app to be portable.
Variants
Either from the main row or from the numpad.
Either from the main row or from the numpad.
Either from the main row or from the numpad.
Either from the main row or from the numpad.
Either from the main row or from the numpad.
Either from the main row or from the numpad.
Either from the main row or from the numpad.
Either from the main row or from the numpad.
Either from the main row or from the numpad.
Either from the main row or from the numpad.
Trait Implementations
impl Ord for Key[src]
impl Ord for Key[src]impl PartialOrd<Key> for Key[src]
impl PartialOrd<Key> for Key[src]fn partial_cmp(&self, other: &Key) -> Option<Ordering>[src]
fn partial_cmp(&self, other: &Key) -> Option<Ordering>[src]This method returns an ordering between self and other values if one exists. Read more
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]This method tests less than (for self and other) and is used by the < operator. Read more
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl Copy for Key[src]
impl Eq for Key[src]
impl StructuralEq for Key[src]
impl StructuralPartialEq for Key[src]
Auto Trait Implementations
impl RefUnwindSafe for Key
impl Send for Key
impl Sync for Key
impl Unpin for Key
impl UnwindSafe for Key
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more