Trait ICreateObject_Impl
pub trait ICreateObject_Impl: IUnknownImpl {
// Required method
fn CreateObject(
&self,
clsid: *const GUID,
punkouter: Ref<'_, IUnknown>,
riid: *const GUID,
ppv: *mut *mut c_void,
) -> Result<()>;
}
Required Methods§
fn CreateObject( &self, clsid: *const GUID, punkouter: Ref<'_, IUnknown>, 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.