pub trait GuiContainerExt<T: HasIDispatch = Self>: HasIDispatch<T> {
// Provided methods
fn children(&self) -> Result<GuiComponentCollection> { ... }
fn find_by_id(&self, p0: String) -> Result<GuiComponent> { ... }
}Provided Methods§
fn children(&self) -> Result<GuiComponentCollection>
fn find_by_id(&self, p0: String) -> Result<GuiComponent>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".