Enum egui::output::OutputEvent [−][src]
pub enum OutputEvent {
Clicked(WidgetInfo),
DoubleClicked(WidgetInfo),
FocusGained(WidgetInfo),
TextSelectionChanged(WidgetInfo),
ValueChanged(WidgetInfo),
}
Expand description
Things that happened during this frame that the integration may be interested in.
In particular, these events may be useful for accessability, i.e. for screen readers.
Variants
Clicked(WidgetInfo)
Tuple Fields
0: WidgetInfo
DoubleClicked(WidgetInfo)
Tuple Fields
0: WidgetInfo
FocusGained(WidgetInfo)
Tuple Fields
0: WidgetInfo
A widget gained keyboard focus (by tab key).
TextSelectionChanged(WidgetInfo)
Tuple Fields
0: WidgetInfo
ValueChanged(WidgetInfo)
Tuple Fields
0: WidgetInfo
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for OutputEvent
impl Send for OutputEvent
impl Sync for OutputEvent
impl Unpin for OutputEvent
impl UnwindSafe for OutputEvent
Blanket Implementations
Mutably borrows from an owned value. Read more