pub trait IEnumPins_Impl: Sized {
    // Required methods
    fn Next(
        &self,
        cpins: u32,
        pppins: *mut Option<IPin>,
        pcfetched: *mut u32
    ) -> HRESULT;
    fn Skip(&self, cpins: u32) -> Result<()>;
    fn Reset(&self) -> Result<()>;
    fn Clone(&self) -> Result<IEnumPins>;
}

Required Methods§

fn Next( &self, cpins: u32, pppins: *mut Option<IPin>, pcfetched: *mut u32 ) -> HRESULT

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

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

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

Object Safety§

This trait is not object safe.

Implementors§