pub trait IDebugHostSymbolEnumerator_Impl: Sized {
    // Required methods
    fn Reset(&self) -> Result<()>;
    fn GetNext(&self) -> Result<IDebugHostSymbol>;
}

Required Methods§

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

fn GetNext(&self) -> Result<IDebugHostSymbol>

Object Safety§

This trait is not object safe.

Implementors§