Trait IPropertyStoreFactory_Impl
pub trait IPropertyStoreFactory_Impl: IUnknownImpl {
// Required methods
fn GetPropertyStore(
&self,
flags: GETPROPERTYSTOREFLAGS,
punkfactory: Ref<'_, IUnknown>,
riid: *const GUID,
ppv: *mut *mut c_void,
) -> Result<()>;
fn GetPropertyStoreForKeys(
&self,
rgkeys: *const PROPERTYKEY,
ckeys: u32,
flags: GETPROPERTYSTOREFLAGS,
riid: *const GUID,
ppv: *mut *mut c_void,
) -> Result<()>;
}
Required Methods§
fn GetPropertyStore( &self, flags: GETPROPERTYSTOREFLAGS, punkfactory: Ref<'_, IUnknown>, riid: *const GUID, ppv: *mut *mut c_void, ) -> Result<()>
fn GetPropertyStoreForKeys( &self, rgkeys: *const PROPERTYKEY, ckeys: u32, flags: GETPROPERTYSTOREFLAGS, riid: *const GUID, ppv: *mut *mut c_void, ) -> 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.