pub trait IRawEnumerator_Impl: Sized {
    // Required methods
    fn Reset(&self) -> Result<()>;
    fn GetNext(
        &self,
        name: *mut BSTR,
        kind: *mut SymbolKind,
        value: *mut Option<IModelObject>,
    ) -> Result<()>;
}

Required Methods§

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

fn GetNext( &self, name: *mut BSTR, kind: *mut SymbolKind, value: *mut Option<IModelObject>, ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§