windows::Win32::UI::Accessibility

Trait IRawElementProviderAdviseEvents_Impl

pub trait IRawElementProviderAdviseEvents_Impl: IUnknownImpl {
    // 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<()>

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§