Trait IUIAutomationProxyFactoryMapping_Impl
pub trait IUIAutomationProxyFactoryMapping_Impl: IUnknownImpl {
// Required methods
fn Count(&self) -> Result<u32>;
fn GetTable(&self) -> Result<*mut SAFEARRAY>;
fn GetEntry(&self, index: u32) -> Result<IUIAutomationProxyFactoryEntry>;
fn SetTable(&self, factorylist: *const SAFEARRAY) -> Result<()>;
fn InsertEntries(
&self,
before: u32,
factorylist: *const SAFEARRAY,
) -> Result<()>;
fn InsertEntry(
&self,
before: u32,
factory: Ref<'_, IUIAutomationProxyFactoryEntry>,
) -> Result<()>;
fn RemoveEntry(&self, index: u32) -> Result<()>;
fn ClearTable(&self) -> Result<()>;
fn RestoreDefaultTable(&self) -> Result<()>;
}
Required Methods§
fn Count(&self) -> Result<u32>
fn GetTable(&self) -> Result<*mut SAFEARRAY>
fn GetEntry(&self, index: u32) -> Result<IUIAutomationProxyFactoryEntry>
fn SetTable(&self, factorylist: *const SAFEARRAY) -> Result<()>
fn InsertEntries( &self, before: u32, factorylist: *const SAFEARRAY, ) -> Result<()>
fn InsertEntry( &self, before: u32, factory: Ref<'_, IUIAutomationProxyFactoryEntry>, ) -> Result<()>
fn RemoveEntry(&self, index: u32) -> Result<()>
fn ClearTable(&self) -> Result<()>
fn RestoreDefaultTable(&self) -> Result<()>
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.