Struct rerun::external::eframe::egui::PlatformOutput
pub struct PlatformOutput {
pub cursor_icon: CursorIcon,
pub open_url: Option<OpenUrl>,
pub copied_text: String,
pub events: Vec<OutputEvent>,
pub mutable_text_under_cursor: bool,
pub ime: Option<IMEOutput>,
pub accesskit_update: Option<TreeUpdate>,
pub num_completed_passes: usize,
pub request_discard_reasons: Vec<RepaintCause>,
}
Expand description
The non-rendering part of what egui emits each frame.
You can access (and modify) this with crate::Context::output
.
The backend should use this.
Fields§
§cursor_icon: CursorIcon
Set the cursor to this icon.
open_url: Option<OpenUrl>
If set, open this url.
copied_text: String
If set, put this text in the system clipboard. Ignore if empty.
This is often a response to crate::Event::Copy
or crate::Event::Cut
.
if ui.button("📋").clicked() {
ui.output_mut(|o| o.copied_text = "some_text".to_string());
}
events: Vec<OutputEvent>
Events that may be useful to e.g. a screen reader.
mutable_text_under_cursor: bool
Is there a mutable TextEdit
under the cursor?
Use by eframe
web to show/hide mobile keyboard and IME agent.
ime: Option<IMEOutput>
This is set if, and only if, the user is currently editing text.
Useful for IME.
accesskit_update: Option<TreeUpdate>
The difference in the widget tree since last frame.
NOTE: this needs to be per-viewport.
num_completed_passes: usize
How many ui passes is this the sum of?
See crate::Context::request_discard
for details.
This is incremented at the END of each frame,
so this will be 0
for the first pass.
request_discard_reasons: Vec<RepaintCause>
Was crate::Context::request_discard
called during the latest pass?
If so, what was the reason(s) for it?
If empty, there was never any calls.
Implementations§
§impl PlatformOutput
impl PlatformOutput
pub fn events_description(&self) -> String
pub fn events_description(&self) -> String
This can be used by a text-to-speech system to describe the events (if any).
pub fn append(&mut self, newer: PlatformOutput)
pub fn append(&mut self, newer: PlatformOutput)
Add on new output.
pub fn take(&mut self) -> PlatformOutput
pub fn take(&mut self) -> PlatformOutput
Take everything ephemeral (everything except cursor_icon
currently)
pub fn requested_discard(&self) -> bool
pub fn requested_discard(&self) -> bool
Was crate::Context::request_discard
called?
Trait Implementations§
§impl Clone for PlatformOutput
impl Clone for PlatformOutput
§fn clone(&self) -> PlatformOutput
fn clone(&self) -> PlatformOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more§impl Default for PlatformOutput
impl Default for PlatformOutput
§fn default() -> PlatformOutput
fn default() -> PlatformOutput
§impl<'de> Deserialize<'de> for PlatformOutput
impl<'de> Deserialize<'de> for PlatformOutput
§fn deserialize<__D>(
__deserializer: __D
) -> Result<PlatformOutput, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<PlatformOutput, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
§impl PartialEq for PlatformOutput
impl PartialEq for PlatformOutput
§fn eq(&self, other: &PlatformOutput) -> bool
fn eq(&self, other: &PlatformOutput) -> bool
self
and other
values to be equal, and is used
by ==
.§impl Serialize for PlatformOutput
impl Serialize for PlatformOutput
§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
impl StructuralPartialEq for PlatformOutput
Auto Trait Implementations§
impl Freeze for PlatformOutput
impl RefUnwindSafe for PlatformOutput
impl Send for PlatformOutput
impl Sync for PlatformOutput
impl Unpin for PlatformOutput
impl UnwindSafe for PlatformOutput
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
source§impl<T> CheckedAs for T
impl<T> CheckedAs for T
source§fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
source§impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
source§fn checked_cast_from(src: Src) -> Option<Dst>
fn checked_cast_from(src: Src) -> Option<Dst>
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request