Trait libnoentiendo::keyboard::KeyAdapter
source · pub trait KeyAdapter<F: PartialEq + Clone, T: PartialEq + Clone> {
// Required method
fn map(state: &KeyState<F>) -> KeyState<T>;
}
Expand description
Represents a mapping from a key state of one type to a key state of another type. Mappings can be symbolic (preserve symbols across the mapping, and rewrite modifier keys as needed) or physical (maintain a one-to-one mapping from physical keys to physical keys).
Required Methods§
Object Safety§
This trait is not object safe.