Trait ISelectionItemProvider_Impl
pub trait ISelectionItemProvider_Impl: IUnknownImpl {
// Required methods
fn Select(&self) -> Result<()>;
fn AddToSelection(&self) -> Result<()>;
fn RemoveFromSelection(&self) -> Result<()>;
fn IsSelected(&self) -> Result<BOOL>;
fn SelectionContainer(&self) -> Result<IRawElementProviderSimple>;
}
Required Methods§
fn Select(&self) -> Result<()>
fn AddToSelection(&self) -> Result<()>
fn RemoveFromSelection(&self) -> Result<()>
fn IsSelected(&self) -> Result<BOOL>
fn SelectionContainer(&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.