Trait IGridProvider_Impl
pub trait IGridProvider_Impl: IUnknownImpl {
// Required methods
fn GetItem(
&self,
row: i32,
column: i32,
) -> Result<IRawElementProviderSimple>;
fn RowCount(&self) -> Result<i32>;
fn ColumnCount(&self) -> Result<i32>;
}
Required Methods§
fn GetItem(&self, row: i32, column: i32) -> Result<IRawElementProviderSimple>
fn RowCount(&self) -> Result<i32>
fn ColumnCount(&self) -> Result<i32>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.