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
Fields
serial: u32serial number of the event
surface: WlSurfacesurface that was entered
rawkeys: &'a [u32]raw values of the currently pressed keys
keysyms: &'a [u32]interpreted symbols of the currently pressed keys
The keyboard focus has entered a surface
Leave
The keyboard focus has left a surface
Modifiers
Fields
modifiers: ModifiersStatecurrent state of the modifiers
The key modifiers have changed state
Key
Fields
serial: u32serial number of the event
time: u32time at which the keypress occurred
rawkey: u32raw value of the key
keysym: u32interpreted symbol of the key
state: KeyStatenew state of the key
A key event occurred
Repeat
Fields
time: u32time at which the repetition occured
rawkey: u32raw value of the key
keysym: u32interpreted 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