Enum wayland_client::protocol::wl_keyboard::KeymapFormat
source · #[non_exhaustive]#[repr(u32)]pub enum KeymapFormat {
NoKeymap = 0,
XkbV1 = 1,
}
Expand description
keyboard mapping format
This specifies the format of the keymap provided to the client with the wl_keyboard.keymap event.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
NoKeymap = 0
no keymap; client must understand how to interpret the raw keycode
XkbV1 = 1
libxkbcommon compatible; to determine the xkb keycode, clients must add 8 to the key event keycode
Implementations§
Trait Implementations§
source§impl Clone for KeymapFormat
impl Clone for KeymapFormat
source§fn clone(&self) -> KeymapFormat
fn clone(&self) -> KeymapFormat
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 Debug for KeymapFormat
impl Debug for KeymapFormat
source§impl PartialEq for KeymapFormat
impl PartialEq for KeymapFormat
source§fn eq(&self, other: &KeymapFormat) -> bool
fn eq(&self, other: &KeymapFormat) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for KeymapFormat
impl StructuralPartialEq for KeymapFormat
Auto Trait Implementations§
impl RefUnwindSafe for KeymapFormat
impl Send for KeymapFormat
impl Sync for KeymapFormat
impl Unpin for KeymapFormat
impl UnwindSafe for KeymapFormat
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