pub trait IOpcPartEnumerator_Impl: Sized {
    // Required methods
    fn MoveNext(&self) -> Result<BOOL>;
    fn MovePrevious(&self) -> Result<BOOL>;
    fn GetCurrent(&self) -> Result<IOpcPart>;
    fn Clone(&self) -> Result<IOpcPartEnumerator>;
}

Required Methods§

fn MoveNext(&self) -> Result<BOOL>

fn MovePrevious(&self) -> Result<BOOL>

fn GetCurrent(&self) -> Result<IOpcPart>

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

Object Safety§

This trait is not object safe.

Implementors§