pub trait IEnumCERTVIEWATTRIBUTE_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Next(&self, pindex: *mut i32) -> Result<()>;
    fn GetName(&self, pstrout: *mut BSTR) -> Result<()>;
    fn GetValue(&self, pstrout: *mut BSTR) -> Result<()>;
    fn Skip(&self, celt: i32) -> Result<()>;
    fn Reset(&self) -> Result<()>;
    fn Clone(&self) -> Result<IEnumCERTVIEWATTRIBUTE>;
}

Required Methods§

fn Next(&self, pindex: *mut i32) -> Result<()>

fn GetName(&self, pstrout: *mut BSTR) -> Result<()>

fn GetValue(&self, pstrout: *mut BSTR) -> Result<()>

fn Skip(&self, celt: i32) -> Result<()>

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

fn Clone(&self) -> Result<IEnumCERTVIEWATTRIBUTE>

Object Safety§

This trait is not object safe.

Implementors§