pub type RawKeycode = u32;
Expand description
A number used to represent a physical key on a keyboard.
A standard PC-compatible keyboard might have 102 keys. An appropriate keymap would assign each of them a keycode, by which the user should refer to the key throughout the library.
Historically, the X11 protocol, and consequently the XKB protocol, assigned only 8 bits for keycodes. This limits the number of different keys that can be used simultaneously in a single keymap to 256 (disregarding other limitations). This library does not share this limit.
Corresponds to xkb_keycode_t