Trait IGridItemProvider_Impl
pub trait IGridItemProvider_Impl: IUnknownImpl {
// Required methods
fn Row(&self) -> Result<i32>;
fn Column(&self) -> Result<i32>;
fn RowSpan(&self) -> Result<i32>;
fn ColumnSpan(&self) -> Result<i32>;
fn ContainingGrid(&self) -> Result<IRawElementProviderSimple>;
}
Required Methods§
fn Row(&self) -> Result<i32>
fn Column(&self) -> Result<i32>
fn RowSpan(&self) -> Result<i32>
fn ColumnSpan(&self) -> Result<i32>
fn ContainingGrid(&self) -> Result<IRawElementProviderSimple>
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.