windows::Win32::System::Search

Trait ISearchItemsChangedSink_Impl

pub trait ISearchItemsChangedSink_Impl: IUnknownImpl {
    // Required methods
    fn StartedMonitoringScope(&self, pszurl: &PCWSTR) -> Result<()>;
    fn StoppedMonitoringScope(&self, pszurl: &PCWSTR) -> Result<()>;
    fn OnItemsChanged(
        &self,
        dwnumberofchanges: u32,
        rgdatachangeentries: *const SEARCH_ITEM_CHANGE,
        rgdwdocids: *mut u32,
        rghrcompletioncodes: *mut HRESULT,
    ) -> Result<()>;
}

Required Methods§

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

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

fn OnItemsChanged( &self, dwnumberofchanges: u32, rgdatachangeentries: *const SEARCH_ITEM_CHANGE, rgdwdocids: *mut u32, rghrcompletioncodes: *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§