pub struct KeyMap {
    pub usb: u16,
    pub evdev: u16,
    pub xkb: u16,
    pub win: u16,
    pub mac: u16,
    pub code: Option<KeyMappingCode>,
    pub id: KeyMappingId,
    pub modifier: Option<KeyModifiers>,
}
Expand description

Ergonomic access to a specific key’s mapping of values

Fields

usb: u16

USB HID value for a specific key

evdev: u16

Linux kernel evdev value for a specific key

xkb: u16

X11 value for a specific key

win: u16

Windows value for a specific key

mac: u16

Mac value for a specific key

code: Option<KeyMappingCode>

W3 browser event code for a specific key

id: KeyMappingId

Id for a specific key

modifier: Option<KeyModifiers>

USB HID bitmask

Implementations

If you don’t want to use TryFrom, until it is stabilized

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Converts to this type from the input type.

Converts to this type from the input type.

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

The type returned in the event of a conversion error.

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.