pub enum KeyboardControl {
SwitchMode(KeyboardMode),
}Expand description
Internal control action produced by a special key in the keyboard map.
Registration policy: Specification Required (LPAR-13 §7).
Variants§
SwitchMode(KeyboardMode)
Switch to the indicated keyboard mode.
Trait Implementations§
Source§impl Clone for KeyboardControl
impl Clone for KeyboardControl
Source§fn clone(&self) -> KeyboardControl
fn clone(&self) -> KeyboardControl
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 moreSource§impl Debug for KeyboardControl
impl Debug for KeyboardControl
impl Eq for KeyboardControl
Source§impl PartialEq for KeyboardControl
impl PartialEq for KeyboardControl
impl StructuralPartialEq for KeyboardControl
Auto Trait Implementations§
impl Freeze for KeyboardControl
impl RefUnwindSafe for KeyboardControl
impl Send for KeyboardControl
impl Sync for KeyboardControl
impl Unpin for KeyboardControl
impl UnsafeUnpin for KeyboardControl
impl UnwindSafe for KeyboardControl
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