Struct egui::output::Output [−][src]
pub struct Output {
pub cursor_icon: CursorIcon,
pub open_url: Option<OpenUrl>,
pub copied_text: String,
pub needs_repaint: bool,
pub events: Vec<OutputEvent>,
pub mutable_text_under_cursor: bool,
pub text_cursor_pos: Option<Pos2>,
}Expand description
What egui emits each frame. The backend should use this.
Fields
cursor_icon: CursorIconSet the cursor to this icon.
open_url: Option<OpenUrl>If set, open this url.
copied_text: StringIf set, put this text in the system clipboard. Ignore if empty.
This is often a response to crate::Event::Copy or crate::Event::Cut.
needs_repaint: boolIf true, egui is requesting immediate repaint (i.e. on the next frame).
This happens for instance when there is an animation, or if a user has called Context::request_repaint().
As an egui user: don’t set this value directly.
Call Context::request_repaint() instead and it will do so for you.
events: Vec<OutputEvent>Events that may be useful to e.g. a screen reader.
mutable_text_under_cursor: boolIs there a mutable TextEdit under the cursor?
Use by egui_web to show/hide mobile keyboard and IME agent.
text_cursor_pos: Option<Pos2>Screen-space position of text edit cursor (used for IME).
Implementations
Open the given url in a web browser. If egui is running in a browser, the same tab will be reused.
This can be used by a text-to-speech system to describe the events (if any).
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for Output
impl UnwindSafe for Output
Blanket Implementations
Mutably borrows from an owned value. Read more