pub struct IUIAutomationEventHandlerGroup(/* private fields */);
Implementations§
Source§impl IUIAutomationEventHandlerGroup
impl IUIAutomationEventHandlerGroup
pub unsafe fn AddActiveTextPositionChangedEventHandler<'a>( &self, scope: TreeScope, cacherequest: impl IntoParam<'a, IUIAutomationCacheRequest>, handler: impl IntoParam<'a, IUIAutomationActiveTextPositionChangedEventHandler>, ) -> Result<()>
pub unsafe fn AddAutomationEventHandler<'a>( &self, eventid: i32, scope: TreeScope, cacherequest: impl IntoParam<'a, IUIAutomationCacheRequest>, handler: impl IntoParam<'a, IUIAutomationEventHandler>, ) -> Result<()>
pub unsafe fn AddChangesEventHandler<'a>( &self, scope: TreeScope, changetypes: *mut i32, changescount: i32, cacherequest: impl IntoParam<'a, IUIAutomationCacheRequest>, handler: impl IntoParam<'a, IUIAutomationChangesEventHandler>, ) -> Result<()>
pub unsafe fn AddNotificationEventHandler<'a>( &self, scope: TreeScope, cacherequest: impl IntoParam<'a, IUIAutomationCacheRequest>, handler: impl IntoParam<'a, IUIAutomationNotificationEventHandler>, ) -> Result<()>
pub unsafe fn AddPropertyChangedEventHandler<'a>( &self, scope: TreeScope, cacherequest: impl IntoParam<'a, IUIAutomationCacheRequest>, handler: impl IntoParam<'a, IUIAutomationPropertyChangedEventHandler>, propertyarray: *mut i32, propertycount: i32, ) -> Result<()>
pub unsafe fn AddStructureChangedEventHandler<'a>( &self, scope: TreeScope, cacherequest: impl IntoParam<'a, IUIAutomationCacheRequest>, handler: impl IntoParam<'a, IUIAutomationStructureChangedEventHandler>, ) -> Result<()>
pub unsafe fn AddTextEditTextChangedEventHandler<'a>( &self, scope: TreeScope, texteditchangetype: TextEditChangeType, cacherequest: impl IntoParam<'a, IUIAutomationCacheRequest>, handler: impl IntoParam<'a, IUIAutomationTextEditTextChangedEventHandler>, ) -> Result<()>
Trait Implementations§
Source§impl Clone for IUIAutomationEventHandlerGroup
impl Clone for IUIAutomationEventHandlerGroup
Source§fn clone(&self) -> IUIAutomationEventHandlerGroup
fn clone(&self) -> IUIAutomationEventHandlerGroup
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 From<&IUIAutomationEventHandlerGroup> for IUnknown
impl From<&IUIAutomationEventHandlerGroup> for IUnknown
Source§fn from(value: &IUIAutomationEventHandlerGroup) -> Self
fn from(value: &IUIAutomationEventHandlerGroup) -> Self
Converts to this type from the input type.
Source§impl From<IUIAutomationEventHandlerGroup> for IUnknown
impl From<IUIAutomationEventHandlerGroup> for IUnknown
Source§fn from(value: IUIAutomationEventHandlerGroup) -> Self
fn from(value: IUIAutomationEventHandlerGroup) -> Self
Converts to this type from the input type.
Source§impl Interface for IUIAutomationEventHandlerGroup
impl Interface for IUIAutomationEventHandlerGroup
const IID: Guid
type Vtable = IUIAutomationEventHandlerGroup_abi
Source§unsafe fn assume_vtable<T>(&self) -> &<T as Interface>::Vtablewhere
T: Interface,
unsafe fn assume_vtable<T>(&self) -> &<T as Interface>::Vtablewhere
T: Interface,
Safety Read more
Source§unsafe fn query(&self, iid: *const Guid, interface: *mut *mut c_void) -> HRESULT
unsafe fn query(&self, iid: *const Guid, interface: *mut *mut c_void) -> HRESULT
Safety Read more
Source§impl PartialEq for IUIAutomationEventHandlerGroup
impl PartialEq for IUIAutomationEventHandlerGroup
Source§fn eq(&self, other: &IUIAutomationEventHandlerGroup) -> bool
fn eq(&self, other: &IUIAutomationEventHandlerGroup) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for IUIAutomationEventHandlerGroup
impl StructuralPartialEq for IUIAutomationEventHandlerGroup
Auto Trait Implementations§
impl Freeze for IUIAutomationEventHandlerGroup
impl RefUnwindSafe for IUIAutomationEventHandlerGroup
impl !Send for IUIAutomationEventHandlerGroup
impl !Sync for IUIAutomationEventHandlerGroup
impl Unpin for IUIAutomationEventHandlerGroup
impl UnwindSafe for IUIAutomationEventHandlerGroup
Blanket Implementations§
Source§impl<T> Abi for Twhere
T: Interface,
impl<T> Abi for Twhere
T: Interface,
type DefaultType = Option<T>
Source§fn ok(value: &<T as Abi>::DefaultType) -> Result<T, Error>
fn ok(value: &<T as Abi>::DefaultType) -> Result<T, Error>
Converts from
Self::DefaultType
to Result<T>
.Source§fn set_abi(&mut self) -> *mut <T as Abi>::Abi
fn set_abi(&mut self) -> *mut <T as Abi>::Abi
Returns a pointer for setting the object’s value via an ABI call.
fn drop_param(_: &mut Param<'_, Self>)
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