pub struct IUIAutomationProxyFactoryMapping(/* private fields */);Implementations§
Source§impl IUIAutomationProxyFactoryMapping
impl IUIAutomationProxyFactoryMapping
pub unsafe fn get_Count(&self) -> Result<u32, Error>
pub unsafe fn GetTable(&self) -> Result<*mut SAFEARRAY, Error>
pub unsafe fn GetEntry( &self, index: u32, ) -> Result<IUIAutomationProxyFactoryEntry, Error>
pub unsafe fn SetTable( &self, factorylist: *const SAFEARRAY, ) -> Result<(), Error>
pub unsafe fn InsertEntries( &self, before: u32, factorylist: *const SAFEARRAY, ) -> Result<(), Error>
pub unsafe fn InsertEntry<'a>( &self, before: u32, factory: impl IntoParam<'a, IUIAutomationProxyFactoryEntry>, ) -> Result<(), Error>
pub unsafe fn RemoveEntry(&self, index: u32) -> Result<(), Error>
pub unsafe fn ClearTable(&self) -> Result<(), Error>
pub unsafe fn RestoreDefaultTable(&self) -> Result<(), Error>
Trait Implementations§
Source§impl Clone for IUIAutomationProxyFactoryMapping
impl Clone for IUIAutomationProxyFactoryMapping
Source§fn clone(&self) -> IUIAutomationProxyFactoryMapping
fn clone(&self) -> IUIAutomationProxyFactoryMapping
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Interface for IUIAutomationProxyFactoryMapping
impl Interface for IUIAutomationProxyFactoryMapping
Source§impl PartialEq for IUIAutomationProxyFactoryMapping
impl PartialEq for IUIAutomationProxyFactoryMapping
Source§fn eq(&self, other: &IUIAutomationProxyFactoryMapping) -> bool
fn eq(&self, other: &IUIAutomationProxyFactoryMapping) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for IUIAutomationProxyFactoryMapping
impl StructuralPartialEq for IUIAutomationProxyFactoryMapping
Auto Trait Implementations§
impl Freeze for IUIAutomationProxyFactoryMapping
impl RefUnwindSafe for IUIAutomationProxyFactoryMapping
impl !Send for IUIAutomationProxyFactoryMapping
impl !Sync for IUIAutomationProxyFactoryMapping
impl Unpin for IUIAutomationProxyFactoryMapping
impl UnwindSafe for IUIAutomationProxyFactoryMapping
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more