Trait IMFPMPServer_Impl
pub trait IMFPMPServer_Impl: IUnknownImpl {
// Required methods
fn LockProcess(&self) -> Result<()>;
fn UnlockProcess(&self) -> Result<()>;
fn CreateObjectByCLSID(
&self,
clsid: *const GUID,
riid: *const GUID,
ppobject: *mut *mut c_void,
) -> Result<()>;
}
Required Methods§
fn LockProcess(&self) -> Result<()>
fn UnlockProcess(&self) -> Result<()>
fn CreateObjectByCLSID( &self, clsid: *const GUID, riid: *const GUID, ppobject: *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.