windows::Win32::System::Search

Trait ICommandStream_Impl

pub trait ICommandStream_Impl: IUnknownImpl {
    // Required methods
    fn GetCommandStream(
        &self,
        piid: *mut GUID,
        pguiddialect: *mut GUID,
        ppcommandstream: OutRef<'_, IUnknown>,
    ) -> Result<()>;
    fn SetCommandStream(
        &self,
        riid: *const GUID,
        rguiddialect: *const GUID,
        pcommandstream: Ref<'_, IUnknown>,
    ) -> Result<()>;
}

Required Methods§

fn GetCommandStream( &self, piid: *mut GUID, pguiddialect: *mut GUID, ppcommandstream: OutRef<'_, IUnknown>, ) -> Result<()>

fn SetCommandStream( &self, riid: *const GUID, rguiddialect: *const GUID, pcommandstream: Ref<'_, IUnknown>, ) -> 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§