Trait IUIAutomation5_Impl
pub trait IUIAutomation5_Impl: IUIAutomation4_Impl {
// Required methods
fn AddNotificationEventHandler(
&self,
element: Ref<'_, IUIAutomationElement>,
scope: TreeScope,
cacherequest: Ref<'_, IUIAutomationCacheRequest>,
handler: Ref<'_, IUIAutomationNotificationEventHandler>,
) -> Result<()>;
fn RemoveNotificationEventHandler(
&self,
element: Ref<'_, IUIAutomationElement>,
handler: Ref<'_, IUIAutomationNotificationEventHandler>,
) -> Result<()>;
}
Required Methods§
fn AddNotificationEventHandler( &self, element: Ref<'_, IUIAutomationElement>, scope: TreeScope, cacherequest: Ref<'_, IUIAutomationCacheRequest>, handler: Ref<'_, IUIAutomationNotificationEventHandler>, ) -> Result<()>
fn RemoveNotificationEventHandler( &self, element: Ref<'_, IUIAutomationElement>, handler: Ref<'_, IUIAutomationNotificationEventHandler>, ) -> 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.