Trait IServicePool_Impl
pub trait IServicePool_Impl: IUnknownImpl {
// Required methods
fn Initialize(&self, ppoolconfig: Ref<'_, IUnknown>) -> Result<()>;
fn GetObject(&self, riid: *const GUID, ppv: *mut *mut c_void) -> Result<()>;
fn Shutdown(&self) -> Result<()>;
}
Required Methods§
fn Initialize(&self, ppoolconfig: Ref<'_, IUnknown>) -> Result<()>
fn GetObject(&self, riid: *const GUID, ppv: *mut *mut c_void) -> Result<()>
fn Shutdown(&self) -> 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.