pub trait IEnumDebugExtendedPropertyInfo_Impl: Sized {
    // Required methods
    fn Next(
        &self,
        celt: u32,
        rgextendedpropertyinfo: *mut ExtendedDebugPropertyInfo,
        pceltfetched: *mut u32,
    ) -> Result<()>;
    fn Skip(&self, celt: u32) -> Result<()>;
    fn Reset(&self) -> Result<()>;
    fn Clone(&self) -> Result<IEnumDebugExtendedPropertyInfo>;
    fn GetCount(&self) -> Result<u32>;
}

Required Methods§

fn Next( &self, celt: u32, rgextendedpropertyinfo: *mut ExtendedDebugPropertyInfo, pceltfetched: *mut u32, ) -> Result<()>

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

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

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

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

Object Safety§

This trait is not object safe.

Implementors§