pub trait IXpsPartIterator_Impl: Sized {
    // Required methods
    fn Reset(&self);
    fn Current(
        &self,
        puri: *mut BSTR,
        ppxpspart: *mut Option<IUnknown>
    ) -> Result<()>;
    fn IsDone(&self) -> BOOL;
    fn Next(&self);
}

Required Methods§

fn Reset(&self)

fn Current( &self, puri: *mut BSTR, ppxpspart: *mut Option<IUnknown> ) -> Result<()>

fn IsDone(&self) -> BOOL

fn Next(&self)

Object Safety§

This trait is not object safe.

Implementors§