pub trait IFaxOutgoingMessageIterator_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Message(&self) -> Result<IFaxOutgoingMessage>;
    fn AtEOF(&self) -> Result<VARIANT_BOOL>;
    fn PrefetchSize(&self) -> Result<i32>;
    fn SetPrefetchSize(&self, lprefetchsize: i32) -> Result<()>;
    fn MoveFirst(&self) -> Result<()>;
    fn MoveNext(&self) -> Result<()>;
}

Required Methods§

fn Message(&self) -> Result<IFaxOutgoingMessage>

fn AtEOF(&self) -> Result<VARIANT_BOOL>

fn PrefetchSize(&self) -> Result<i32>

fn SetPrefetchSize(&self, lprefetchsize: i32) -> Result<()>

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

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

Object Safety§

This trait is not object safe.

Implementors§