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