pub trait IDataModelScriptDebugVariableSetEnumerator_Impl: Sized {
    // Required methods
    fn Reset(&self) -> Result<()>;
    fn GetNext(
        &self,
        variablename: *mut BSTR,
        variablevalue: *mut Option<IModelObject>,
        variablemetadata: *mut Option<IKeyStore>,
    ) -> Result<()>;
}

Required Methods§

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

fn GetNext( &self, variablename: *mut BSTR, variablevalue: *mut Option<IModelObject>, variablemetadata: *mut Option<IKeyStore>, ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§