enum XEventEnum {
KeyEvent(XKeyEvent),
ButtonEvent {
event: XButtonEvent,
pressed: bool,
},
Motion(XMotionEvent),
Expose,
ClientMessage(u64),
ShmCompletionEvent(c_ulong),
Unhandled,
}Variants§
KeyEvent(XKeyEvent)
ButtonEvent
Motion(XMotionEvent)
Expose
ClientMessage(u64)
ShmCompletionEvent(c_ulong)
Unhandled
Auto Trait Implementations§
impl Freeze for XEventEnum
impl RefUnwindSafe for XEventEnum
impl !Send for XEventEnum
impl !Sync for XEventEnum
impl Unpin for XEventEnum
impl UnwindSafe for XEventEnum
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