windows::Win32::System::Search

Trait ISimpleCommandCreator_Impl

pub trait ISimpleCommandCreator_Impl: IUnknownImpl {
    // Required methods
    fn CreateICommand(
        &self,
        ppiunknown: OutRef<'_, IUnknown>,
        pouterunk: Ref<'_, IUnknown>,
    ) -> Result<()>;
    fn VerifyCatalog(
        &self,
        pwszmachine: &PCWSTR,
        pwszcatalogname: &PCWSTR,
    ) -> Result<()>;
    fn GetDefaultCatalog(
        &self,
        pwszcatalogname: &PCWSTR,
        cwcin: u32,
        pcwcout: *mut u32,
    ) -> Result<()>;
}

Required Methods§

fn CreateICommand( &self, ppiunknown: OutRef<'_, IUnknown>, pouterunk: Ref<'_, IUnknown>, ) -> Result<()>

fn VerifyCatalog( &self, pwszmachine: &PCWSTR, pwszcatalogname: &PCWSTR, ) -> Result<()>

fn GetDefaultCatalog( &self, pwszcatalogname: &PCWSTR, cwcin: u32, pcwcout: *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§