windows::Win32::UI::Accessibility

Trait IUIAutomation4_Impl

pub trait IUIAutomation4_Impl: IUIAutomation3_Impl {
    // Required methods
    fn AddChangesEventHandler(
        &self,
        element: Ref<'_, IUIAutomationElement>,
        scope: TreeScope,
        changetypes: *const i32,
        changescount: i32,
        pcacherequest: Ref<'_, IUIAutomationCacheRequest>,
        handler: Ref<'_, IUIAutomationChangesEventHandler>,
    ) -> Result<()>;
    fn RemoveChangesEventHandler(
        &self,
        element: Ref<'_, IUIAutomationElement>,
        handler: Ref<'_, IUIAutomationChangesEventHandler>,
    ) -> Result<()>;
}

Required Methods§

fn AddChangesEventHandler( &self, element: Ref<'_, IUIAutomationElement>, scope: TreeScope, changetypes: *const i32, changescount: i32, pcacherequest: Ref<'_, IUIAutomationCacheRequest>, handler: Ref<'_, IUIAutomationChangesEventHandler>, ) -> Result<()>

fn RemoveChangesEventHandler( &self, element: Ref<'_, IUIAutomationElement>, handler: Ref<'_, IUIAutomationChangesEventHandler>, ) -> 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.

Implementors§