Type Alias KeyboardRef
Source pub type KeyboardRef = Ref;
Expand description
Type aliases for convenience.
pub enum KeyboardRef {
KeyCode(u8),
Modifiers(u8),
KeyCodeAndModifier(u8),
}
A key code without modifiers. (Value is the HID usage code).
A modifiers. (Value is a bitfield of key::KeyboardModifiers
).
A key code with modifiers. (Value is the index into the key data array of System).