Trait ICorProfilerInfo10_Impl
pub trait ICorProfilerInfo10_Impl: ICorProfilerInfo9_Impl {
// Required methods
fn EnumerateObjectReferences(
&self,
objectid: usize,
callback: ObjectReferenceCallback,
clientdata: *mut c_void,
) -> Result<()>;
fn IsFrozenObject(&self, objectid: usize, pbfrozen: *mut BOOL) -> Result<()>;
fn GetLOHObjectSizeThreshold(&self, pthreshold: *mut u32) -> Result<()>;
fn RequestReJITWithInliners(
&self,
dwrejitflags: u32,
cfunctions: u32,
moduleids: *const usize,
methodids: *const u32,
) -> Result<()>;
fn SuspendRuntime(&self) -> Result<()>;
fn ResumeRuntime(&self) -> Result<()>;
}
Required Methods§
fn EnumerateObjectReferences( &self, objectid: usize, callback: ObjectReferenceCallback, clientdata: *mut c_void, ) -> Result<()>
fn IsFrozenObject(&self, objectid: usize, pbfrozen: *mut BOOL) -> Result<()>
fn GetLOHObjectSizeThreshold(&self, pthreshold: *mut u32) -> Result<()>
fn RequestReJITWithInliners( &self, dwrejitflags: u32, cfunctions: u32, moduleids: *const usize, methodids: *const u32, ) -> Result<()>
fn SuspendRuntime(&self) -> Result<()>
fn ResumeRuntime(&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.