Trait ICLRDebugging_Impl
pub trait ICLRDebugging_Impl: IUnknownImpl {
// Required methods
fn OpenVirtualProcess(
&self,
modulebaseaddress: u64,
pdatatarget: Ref<'_, IUnknown>,
plibraryprovider: Ref<'_, ICLRDebuggingLibraryProvider>,
pmaxdebuggersupportedversion: *const CLR_DEBUGGING_VERSION,
riidprocess: *const GUID,
ppprocess: OutRef<'_, IUnknown>,
pversion: *mut CLR_DEBUGGING_VERSION,
pdwflags: *mut CLR_DEBUGGING_PROCESS_FLAGS,
) -> Result<()>;
fn CanUnloadNow(&self, hmodule: HMODULE) -> Result<()>;
}
Required Methods§
fn OpenVirtualProcess( &self, modulebaseaddress: u64, pdatatarget: Ref<'_, IUnknown>, plibraryprovider: Ref<'_, ICLRDebuggingLibraryProvider>, pmaxdebuggersupportedversion: *const CLR_DEBUGGING_VERSION, riidprocess: *const GUID, ppprocess: OutRef<'_, IUnknown>, pversion: *mut CLR_DEBUGGING_VERSION, pdwflags: *mut CLR_DEBUGGING_PROCESS_FLAGS, ) -> Result<()>
fn CanUnloadNow(&self, hmodule: HMODULE) -> 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.