windows::Win32::System::Search

Trait ICommand_Impl

pub trait ICommand_Impl: IUnknownImpl {
    // Required methods
    fn Cancel(&self) -> Result<()>;
    fn Execute(
        &self,
        punkouter: Ref<'_, IUnknown>,
        riid: *const GUID,
        pparams: *mut DBPARAMS,
        pcrowsaffected: *mut isize,
        pprowset: OutRef<'_, IUnknown>,
    ) -> Result<()>;
    fn GetDBSession(&self, riid: *const GUID) -> Result<IUnknown>;
}

Required Methods§

fn Cancel(&self) -> Result<()>

fn Execute( &self, punkouter: Ref<'_, IUnknown>, riid: *const GUID, pparams: *mut DBPARAMS, pcrowsaffected: *mut isize, pprowset: OutRef<'_, IUnknown>, ) -> Result<()>

fn GetDBSession(&self, riid: *const GUID) -> Result<IUnknown>

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§