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> { ... }
}