pub struct DebugTextPlugin { /* private fields */ }Expand description
A plugin for easily showing debug-text on-screen.
This is a built-in plugin in egui, automatically registered during Context creation.
Trait Implementations§
Source§impl Clone for DebugTextPlugin
impl Clone for DebugTextPlugin
Source§fn clone(&self) -> DebugTextPlugin
fn clone(&self) -> DebugTextPlugin
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for DebugTextPlugin
impl Default for DebugTextPlugin
Source§fn default() -> DebugTextPlugin
fn default() -> DebugTextPlugin
Returns the “default value” for a type. Read more
Source§impl Plugin for DebugTextPlugin
impl Plugin for DebugTextPlugin
Source§fn debug_name(&self) -> &'static str
fn debug_name(&self) -> &'static str
Plugin name. Read more
Source§fn on_end_pass(&mut self, ctx: &Context)
fn on_end_pass(&mut self, ctx: &Context)
Called at the end of each pass. Read more
Source§fn on_begin_pass(&mut self, ctx: &Context)
fn on_begin_pass(&mut self, ctx: &Context)
Called at the start of each pass. Read more
Source§fn input_hook(&mut self, input: &mut RawInput)
fn input_hook(&mut self, input: &mut RawInput)
Called just before the input is processed. Read more
Source§fn output_hook(&mut self, output: &mut FullOutput)
fn output_hook(&mut self, output: &mut FullOutput)
Called just before the output is passed to the backend. Read more
Auto Trait Implementations§
impl Freeze for DebugTextPlugin
impl RefUnwindSafe for DebugTextPlugin
impl Send for DebugTextPlugin
impl Sync for DebugTextPlugin
impl Unpin for DebugTextPlugin
impl UnwindSafe for DebugTextPlugin
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