windows::Win32::System::Diagnostics::ClrProfiling

Trait ICorProfilerInfo13_Impl

pub trait ICorProfilerInfo13_Impl: ICorProfilerInfo12_Impl {
    // Required methods
    fn CreateHandle(
        &self,
        object: usize,
        type: COR_PRF_HANDLE_TYPE,
        phandle: *mut *mut *mut c_void,
    ) -> Result<()>;
    fn DestroyHandle(&self, handle: *const *const c_void) -> Result<()>;
    fn GetObjectIDFromHandle(
        &self,
        handle: *const *const c_void,
    ) -> Result<usize>;
}

Required Methods§

fn CreateHandle( &self, object: usize, type: COR_PRF_HANDLE_TYPE, phandle: *mut *mut *mut c_void, ) -> Result<()>

fn DestroyHandle(&self, handle: *const *const c_void) -> Result<()>

fn GetObjectIDFromHandle(&self, handle: *const *const c_void) -> Result<usize>

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.

Implementors§