windows::Win32::System::Search

Trait ISearchPersistentItemsChangedSink_Impl

pub trait ISearchPersistentItemsChangedSink_Impl: IUnknownImpl {
    // Required methods
    fn StartedMonitoringScope(&self, pszurl: &PCWSTR) -> Result<()>;
    fn StoppedMonitoringScope(&self, pszurl: &PCWSTR) -> Result<()>;
    fn OnItemsChanged(
        &self,
        dwnumberofchanges: u32,
        datachangeentries: *const SEARCH_ITEM_PERSISTENT_CHANGE,
        hrcompletioncodes: *mut HRESULT,
    ) -> Result<()>;
}

Required Methods§

fn StartedMonitoringScope(&self, pszurl: &PCWSTR) -> Result<()>

fn StoppedMonitoringScope(&self, pszurl: &PCWSTR) -> Result<()>

fn OnItemsChanged( &self, dwnumberofchanges: u32, datachangeentries: *const SEARCH_ITEM_PERSISTENT_CHANGE, hrcompletioncodes: *mut HRESULT, ) -> 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§