pub trait IUIAutomationNotificationEventHandler_Impl: Sized {
    // Required method
    fn HandleNotificationEvent(
        &self,
        sender: Option<&IUIAutomationElement>,
        notificationkind: NotificationKind,
        notificationprocessing: NotificationProcessing,
        displaystring: &BSTR,
        activityid: &BSTR,
    ) -> Result<()>;
}

Required Methods§

fn HandleNotificationEvent( &self, sender: Option<&IUIAutomationElement>, notificationkind: NotificationKind, notificationprocessing: NotificationProcessing, displaystring: &BSTR, activityid: &BSTR, ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§