pub trait IUIAutomationElementArray_Impl: Sized {
    // Required methods
    fn Length(&self) -> Result<i32>;
    fn GetElement(&self, index: i32) -> Result<IUIAutomationElement>;
}

Required Methods§

fn Length(&self) -> Result<i32>

fn GetElement(&self, index: i32) -> Result<IUIAutomationElement>

Object Safety§

This trait is not object safe.

Implementors§