pub enum Event {
Interaction {
window: Id,
event: Event,
status: Status,
},
PlatformSpecific(PlatformSpecific),
}
Expand description
A subscription event.
Variants§
Interaction
A user interacted with a user interface in a window.
Fields
§
window: Id
The window holding the interface of the interaction.
§
status: Status
The [event::Status
] of the interaction.
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