Trait ICorProfilerCallback3_Impl
pub trait ICorProfilerCallback3_Impl: ICorProfilerCallback2_Impl {
// Required methods
fn InitializeForAttach(
&self,
pcorprofilerinfounk: Ref<'_, IUnknown>,
pvclientdata: *const c_void,
cbclientdata: u32,
) -> Result<()>;
fn ProfilerAttachComplete(&self) -> Result<()>;
fn ProfilerDetachSucceeded(&self) -> Result<()>;
}
Required Methods§
fn InitializeForAttach( &self, pcorprofilerinfounk: Ref<'_, IUnknown>, pvclientdata: *const c_void, cbclientdata: u32, ) -> Result<()>
fn ProfilerAttachComplete(&self) -> Result<()>
fn ProfilerDetachSucceeded(&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.