pub trait IKeyEnumerator_Impl: Sized {
    // Required methods
    fn Reset(&self) -> Result<()>;
    fn GetNext(
        &self,
        key: *mut BSTR,
        value: *mut Option<IModelObject>,
        metadata: *mut Option<IKeyStore>,
    ) -> Result<()>;
}

Required Methods§

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

fn GetNext( &self, key: *mut BSTR, value: *mut Option<IModelObject>, metadata: *mut Option<IKeyStore>, ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§