pub trait GuiCollection_Impl<T: HasIDispatch = Self>: HasIDispatch<T> {
    // Provided methods
    fn count(&self) -> Result<i32> { ... }
    fn length(&self) -> Result<i32> { ... }
    fn _type(&self) -> Result<String> { ... }
    fn type_as_number(&self) -> Result<i32> { ... }
    fn element_at(&self, p0: i32) -> Result<SAPComponent> { ... }
}

Provided Methods§

Implementors§