#[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§
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 Into<Arg> for KeymapFormat
impl Into<Arg> for KeymapFormat
Source§impl PartialEq for KeymapFormat
impl PartialEq for KeymapFormat
impl Copy for KeymapFormat
impl Eq for KeymapFormat
impl StructuralPartialEq for KeymapFormat
Auto Trait Implementations§
impl Freeze for KeymapFormat
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)