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