Trait IUIAutomationSelectionItemPattern_Impl
pub trait IUIAutomationSelectionItemPattern_Impl: IUnknownImpl {
// Required methods
fn Select(&self) -> Result<()>;
fn AddToSelection(&self) -> Result<()>;
fn RemoveFromSelection(&self) -> Result<()>;
fn CurrentIsSelected(&self) -> Result<BOOL>;
fn CurrentSelectionContainer(&self) -> Result<IUIAutomationElement>;
fn CachedIsSelected(&self) -> Result<BOOL>;
fn CachedSelectionContainer(&self) -> Result<IUIAutomationElement>;
}
Required Methods§
fn Select(&self) -> Result<()>
fn AddToSelection(&self) -> Result<()>
fn RemoveFromSelection(&self) -> Result<()>
fn CurrentIsSelected(&self) -> Result<BOOL>
fn CurrentSelectionContainer(&self) -> Result<IUIAutomationElement>
fn CachedIsSelected(&self) -> Result<BOOL>
fn CachedSelectionContainer(&self) -> Result<IUIAutomationElement>
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.