kbvm/
controls.rs

1/// A bitmask of control flags.
2///
3/// KBVM does not assign a meaning to the individual bits but the XKB implementation uses
4/// some of the bits to implement XKB controls.
5#[derive(Copy, Clone, Eq, PartialEq, Hash, Default)]
6pub struct ControlsMask(pub u32);
7
8bitmask!(ControlsMask);