pub trait IUIAutomationStructureChangedEventHandler_Impl: Sized {
    // Required method
    fn HandleStructureChangedEvent(
        &self,
        sender: Option<&IUIAutomationElement>,
        changetype: StructureChangeType,
        runtimeid: *const SAFEARRAY,
    ) -> Result<()>;
}

Required Methods§

fn HandleStructureChangedEvent( &self, sender: Option<&IUIAutomationElement>, changetype: StructureChangeType, runtimeid: *const SAFEARRAY, ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§