pub enum KeymapType {
Xkb = 1,
}Expand description
The keymap type describes how the keymap in the ei_keyboard.keymap event
should be parsed.
Variants§
Xkb = 1
a libxkbcommon-compatible XKB keymap
Trait Implementations§
Source§impl Clone for KeymapType
impl Clone for KeymapType
Source§fn clone(&self) -> KeymapType
fn clone(&self) -> KeymapType
Returns a duplicate 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 Debug for KeymapType
impl Debug for KeymapType
Source§impl From<KeymapType> for u32
impl From<KeymapType> for u32
Source§fn from(value: KeymapType) -> u32
fn from(value: KeymapType) -> u32
Converts to this type from the input type.
Source§impl Hash for KeymapType
impl Hash for KeymapType
Source§impl PartialEq for KeymapType
impl PartialEq for KeymapType
impl Copy for KeymapType
impl Eq for KeymapType
impl StructuralPartialEq for KeymapType
Auto Trait Implementations§
impl Freeze for KeymapType
impl RefUnwindSafe for KeymapType
impl Send for KeymapType
impl Sync for KeymapType
impl Unpin for KeymapType
impl UnwindSafe for KeymapType
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