pub enum AcceleratorKey {
Show 17 variants
R,
NumberPad0,
NumberPad1,
NumberPad2,
NumberPad3,
NumberPad4,
NumberPad5,
NumberPad6,
NumberPad7,
NumberPad8,
NumberPad9,
Divide,
Multiply,
Subtract,
Add,
Decimal,
Enter,
}Expand description
A key supported by Reactor keyboard accelerators.
Variants§
R
NumberPad0
NumberPad1
NumberPad2
NumberPad3
NumberPad4
NumberPad5
NumberPad6
NumberPad7
NumberPad8
NumberPad9
Divide
Multiply
Subtract
Add
Decimal
Enter
Trait Implementations§
Source§impl Clone for AcceleratorKey
impl Clone for AcceleratorKey
Source§fn clone(&self) -> AcceleratorKey
fn clone(&self) -> AcceleratorKey
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AcceleratorKey
Source§impl Debug for AcceleratorKey
impl Debug for AcceleratorKey
impl Eq for AcceleratorKey
Source§impl Hash for AcceleratorKey
impl Hash for AcceleratorKey
Source§impl PartialEq for AcceleratorKey
impl PartialEq for AcceleratorKey
impl StructuralPartialEq for AcceleratorKey
Auto Trait Implementations§
impl Freeze for AcceleratorKey
impl RefUnwindSafe for AcceleratorKey
impl Send for AcceleratorKey
impl Sync for AcceleratorKey
impl Unpin for AcceleratorKey
impl UnsafeUnpin for AcceleratorKey
impl UnwindSafe for AcceleratorKey
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