pub trait WidgetInfoStackExt {
// Required method
fn stack_children(&self) -> Option<Children>;
}Expand description
Extension methods for WidgetInfo that may represent a Stack! instance.
Required Methods§
Sourcefn stack_children(&self) -> Option<Children>
fn stack_children(&self) -> Option<Children>
Gets the stack children, if this widget is a Stack! instance.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".