windows::Win32::System::Search

Trait IRowsetView_Impl

pub trait IRowsetView_Impl: IUnknownImpl {
    // Required methods
    fn CreateView(
        &self,
        punkouter: Ref<'_, IUnknown>,
        riid: *const GUID,
    ) -> Result<IUnknown>;
    fn GetView(
        &self,
        hchapter: usize,
        riid: *const GUID,
        phchaptersource: *mut usize,
        ppview: OutRef<'_, IUnknown>,
    ) -> Result<()>;
}

Required Methods§

fn CreateView( &self, punkouter: Ref<'_, IUnknown>, riid: *const GUID, ) -> Result<IUnknown>

fn GetView( &self, hchapter: usize, riid: *const GUID, phchaptersource: *mut usize, ppview: OutRef<'_, 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§