pub enum WindowMessage {
Init(Dimensions),
KeyPress(KeyPress),
CtrlKeyPress(KeyPress),
Shortcut(ShortcutType),
Info(InfoType),
Focus,
Unfocus,
FocusClick,
ChangeDimensions(Dimensions),
Touch(usize, usize),
}
Variants§
Init(Dimensions)
KeyPress(KeyPress)
CtrlKeyPress(KeyPress)
Shortcut(ShortcutType)
Info(InfoType)
Focus
Unfocus
FocusClick
ChangeDimensions(Dimensions)
Touch(usize, usize)
For onscreen keyboard only
Trait Implementations§
Source§impl Serializable for WindowMessage
impl Serializable for WindowMessage
Auto Trait Implementations§
impl Freeze for WindowMessage
impl RefUnwindSafe for WindowMessage
impl Send for WindowMessage
impl Sync for WindowMessage
impl Unpin for WindowMessage
impl UnwindSafe for WindowMessage
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