pub enum Event<'a> {
Enter {
serial: u32,
surface: WlSurface,
rawkeys: &'a [u32],
keysyms: &'a [u32],
},
Leave {
serial: u32,
surface: WlSurface,
},
Modifiers {
modifiers: ModifiersState,
},
Key {
serial: u32,
time: u32,
rawkey: u32,
keysym: u32,
state: KeyState,
utf8: Option<String>,
},
Repeat {
time: u32,
rawkey: u32,
keysym: u32,
utf8: Option<String>,
},
}
Expand description
Events received from a mapped keyboard
Variants
Enter
The keyboard focus has entered a surface
Leave
The keyboard focus has left a surface
Modifiers
Fields
modifiers: ModifiersState
current state of the modifiers
The key modifiers have changed state
Key
Fields
serial: u32
serial number of the event
time: u32
time at which the keypress occurred
rawkey: u32
raw value of the key
keysym: u32
interpreted symbol of the key
state: KeyState
new state of the key
A key event occurred
Repeat
Fields
time: u32
time at which the repetition occured
rawkey: u32
raw value of the key
keysym: u32
interpreted symbol of the key
A key repetition event
Trait Implementations
Auto Trait Implementations
impl<'a> !RefUnwindSafe for Event<'a>
impl<'a> Send for Event<'a>
impl<'a> Sync for Event<'a>
impl<'a> Unpin for Event<'a>
impl<'a> !UnwindSafe for Event<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more