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

Trait ICorProfilerMethodEnum_Impl

pub trait ICorProfilerMethodEnum_Impl: IUnknownImpl {
    // Required methods
    fn Skip(&self, celt: u32) -> Result<()>;
    fn Reset(&self) -> Result<()>;
    fn Clone(&self) -> Result<ICorProfilerMethodEnum>;
    fn GetCount(&self) -> Result<u32>;
    fn Next(
        &self,
        celt: u32,
        elements: *mut COR_PRF_METHOD,
        pceltfetched: *mut u32,
    ) -> Result<()>;
}

Required Methods§

fn Skip(&self, celt: u32) -> Result<()>

fn Reset(&self) -> Result<()>

fn Clone(&self) -> Result<ICorProfilerMethodEnum>

fn GetCount(&self) -> Result<u32>

fn Next( &self, celt: u32, elements: *mut COR_PRF_METHOD, pceltfetched: *mut u32, ) -> 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.

Implementors§