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

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§