Struct smithay_client_toolkit::keyboard::KeyRepeatEvent[][src]

pub struct KeyRepeatEvent {
    pub time: u32,
    pub modifiers: ModifiersState,
    pub rawkey: u32,
    pub keysym: u32,
    pub utf8: Option<String>,
}

An event sent at repeated intervals for certain keys determined by xkb_keymap_key_repeats

Fields

time at which the keypress occured

current state of the modifiers

raw value of the key

interpreted symbol of the key

utf8 interpretation of the entered text

Auto Trait Implementations

impl Send for KeyRepeatEvent

impl Sync for KeyRepeatEvent