pub struct ClientKeyEvent {
pub keycode: u32,
pub down: bool,
}Expand description
X11 keyboard event to notify the server
Referring to RFC6143, section-7.5.4
Fields§
§keycode: u32§down: boolTrait Implementations§
Source§impl Clone for ClientKeyEvent
impl Clone for ClientKeyEvent
Source§fn clone(&self) -> ClientKeyEvent
fn clone(&self) -> ClientKeyEvent
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ClientKeyEvent
impl Debug for ClientKeyEvent
Auto Trait Implementations§
impl Freeze for ClientKeyEvent
impl RefUnwindSafe for ClientKeyEvent
impl Send for ClientKeyEvent
impl Sync for ClientKeyEvent
impl Unpin for ClientKeyEvent
impl UnwindSafe for ClientKeyEvent
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more