Struct comfy_wgpu::egui::style::DebugOptions
source · pub struct DebugOptions {
pub debug_on_hover: bool,
pub show_expand_width: bool,
pub show_expand_height: bool,
pub show_resize: bool,
pub show_interactive_widgets: bool,
pub show_blocking_widget: bool,
}Expand description
Options for help debug egui by adding extra visualization
Fields§
§debug_on_hover: boolHowever over widgets to see their rectangles
show_expand_width: boolShow which widgets make their parent wider
show_expand_height: boolShow which widgets make their parent higher
show_resize: bool§show_interactive_widgets: boolShow an overlay on all interactive widgets.
show_blocking_widget: boolShow what widget blocks the interaction of another widget.
Implementations§
Trait Implementations§
source§impl Clone for DebugOptions
impl Clone for DebugOptions
source§fn clone(&self) -> DebugOptions
fn clone(&self) -> DebugOptions
Returns a copy 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 Debug for DebugOptions
impl Debug for DebugOptions
source§impl Default for DebugOptions
impl Default for DebugOptions
source§fn default() -> DebugOptions
fn default() -> DebugOptions
Returns the “default value” for a type. Read more
source§impl PartialEq<DebugOptions> for DebugOptions
impl PartialEq<DebugOptions> for DebugOptions
source§fn eq(&self, other: &DebugOptions) -> bool
fn eq(&self, other: &DebugOptions) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for DebugOptions
impl Eq for DebugOptions
impl StructuralEq for DebugOptions
impl StructuralPartialEq for DebugOptions
Auto Trait Implementations§
impl RefUnwindSafe for DebugOptions
impl Send for DebugOptions
impl Sync for DebugOptions
impl Unpin for DebugOptions
impl UnwindSafe for DebugOptions
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
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.