pub trait ICorProfilerInfo13_Impl: Sized + 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>

Object Safety§

This trait is not object safe.

Implementors§