pub trait DebugInfoCollector {
// Required method
fn collect_widget_debug_info(&self) -> String;
}Expand description
Extension trait for collecting debug info from multiple widgets
Required Methods§
Sourcefn collect_widget_debug_info(&self) -> String
fn collect_widget_debug_info(&self) -> String
Collect debug info from all widgets
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".