pub enum Event {
Interaction {
window: Id,
event: Event,
status: Status,
},
SystemThemeChanged(Mode),
PlatformSpecific(PlatformSpecific),
}Expand description
A subscription event.
Variants§
Interaction
A user interacted with a user interface in a window.
Fields
§
window: IdThe window holding the interface of the interaction.
§
status: StatusThe [event::Status] of the interaction.
SystemThemeChanged(Mode)
The system theme has changed.
PlatformSpecific(PlatformSpecific)
A platform specific event.
Trait Implementations§
impl StructuralPartialEq for Event
Auto Trait Implementations§
impl Freeze for Event
impl RefUnwindSafe for Event
impl Send for Event
impl Sync for Event
impl Unpin for Event
impl UnwindSafe for Event
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