pub trait IMessageMover_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn SourcePath(&self) -> Result<BSTR>;
    fn SetSourcePath(&self, newval: &BSTR) -> Result<()>;
    fn DestPath(&self) -> Result<BSTR>;
    fn SetDestPath(&self, newval: &BSTR) -> Result<()>;
    fn CommitBatchSize(&self) -> Result<i32>;
    fn SetCommitBatchSize(&self, newval: i32) -> Result<()>;
    fn MoveMessages(&self) -> Result<i32>;
}

Required Methods§

fn SourcePath(&self) -> Result<BSTR>

fn SetSourcePath(&self, newval: &BSTR) -> Result<()>

fn DestPath(&self) -> Result<BSTR>

fn SetDestPath(&self, newval: &BSTR) -> Result<()>

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

fn SetCommitBatchSize(&self, newval: i32) -> Result<()>

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

Object Safety§

This trait is not object safe.

Implementors§