pub trait IRawElementProviderAdviseEvents_Impl: Sized {
    // Required methods
    fn AdviseEventAdded(
        &self,
        eventid: UIA_EVENT_ID,
        propertyids: *const SAFEARRAY,
    ) -> Result<()>;
    fn AdviseEventRemoved(
        &self,
        eventid: UIA_EVENT_ID,
        propertyids: *const SAFEARRAY,
    ) -> Result<()>;
}

Required Methods§

fn AdviseEventAdded( &self, eventid: UIA_EVENT_ID, propertyids: *const SAFEARRAY, ) -> Result<()>

fn AdviseEventRemoved( &self, eventid: UIA_EVENT_ID, propertyids: *const SAFEARRAY, ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§