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