windows::Win32::System::Search

Trait IRowsetPrioritization_Impl

pub trait IRowsetPrioritization_Impl: IUnknownImpl {
    // Required methods
    fn SetScopePriority(
        &self,
        priority: PRIORITY_LEVEL,
        scopestatisticseventfrequency: u32,
    ) -> Result<()>;
    fn GetScopePriority(
        &self,
        priority: *mut PRIORITY_LEVEL,
        scopestatisticseventfrequency: *mut u32,
    ) -> Result<()>;
    fn GetScopeStatistics(
        &self,
        indexeddocumentcount: *mut u32,
        oustandingaddcount: *mut u32,
        oustandingmodifycount: *mut u32,
    ) -> Result<()>;
}

Required Methods§

fn SetScopePriority( &self, priority: PRIORITY_LEVEL, scopestatisticseventfrequency: u32, ) -> Result<()>

fn GetScopePriority( &self, priority: *mut PRIORITY_LEVEL, scopestatisticseventfrequency: *mut u32, ) -> Result<()>

fn GetScopeStatistics( &self, indexeddocumentcount: *mut u32, oustandingaddcount: *mut u32, oustandingmodifycount: *mut u32, ) -> 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§