windows::Win32::System::Search

Trait IDBSchemaRowset_Impl

pub trait IDBSchemaRowset_Impl: IUnknownImpl {
    // Required methods
    fn GetRowset(
        &self,
        punkouter: Ref<'_, IUnknown>,
        rguidschema: *const GUID,
        crestrictions: u32,
        rgrestrictions: *const VARIANT,
        riid: *const GUID,
        cpropertysets: u32,
        rgpropertysets: *mut DBPROPSET,
        pprowset: OutRef<'_, IUnknown>,
    ) -> Result<()>;
    fn GetSchemas(
        &self,
        pcschemas: *mut u32,
        prgschemas: *mut *mut GUID,
        prgrestrictionsupport: *mut *mut u32,
    ) -> Result<()>;
}

Required Methods§

fn GetRowset( &self, punkouter: Ref<'_, IUnknown>, rguidschema: *const GUID, crestrictions: u32, rgrestrictions: *const VARIANT, riid: *const GUID, cpropertysets: u32, rgpropertysets: *mut DBPROPSET, pprowset: OutRef<'_, IUnknown>, ) -> Result<()>

fn GetSchemas( &self, pcschemas: *mut u32, prgschemas: *mut *mut GUID, prgrestrictionsupport: *mut *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§