pub trait IUIAutomationEventHandler_Impl: Sized {
    // Required method
    fn HandleAutomationEvent(
        &self,
        sender: Option<&IUIAutomationElement>,
        eventid: UIA_EVENT_ID,
    ) -> Result<()>;
}

Required Methods§

fn HandleAutomationEvent( &self, sender: Option<&IUIAutomationElement>, eventid: UIA_EVENT_ID, ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§