pub trait IFaxIncomingArchive_Impl: Sized + IDispatch_Impl {
Show 18 methods // Required methods fn UseArchive(&self) -> Result<VARIANT_BOOL>; fn SetUseArchive(&self, busearchive: VARIANT_BOOL) -> Result<()>; fn ArchiveFolder(&self) -> Result<BSTR>; fn SetArchiveFolder(&self, bstrarchivefolder: &BSTR) -> Result<()>; fn SizeQuotaWarning(&self) -> Result<VARIANT_BOOL>; fn SetSizeQuotaWarning(&self, bsizequotawarning: VARIANT_BOOL) -> Result<()>; fn HighQuotaWaterMark(&self) -> Result<i32>; fn SetHighQuotaWaterMark(&self, lhighquotawatermark: i32) -> Result<()>; fn LowQuotaWaterMark(&self) -> Result<i32>; fn SetLowQuotaWaterMark(&self, llowquotawatermark: i32) -> Result<()>; fn AgeLimit(&self) -> Result<i32>; fn SetAgeLimit(&self, lagelimit: i32) -> Result<()>; fn SizeLow(&self) -> Result<i32>; fn SizeHigh(&self) -> Result<i32>; fn Refresh(&self) -> Result<()>; fn Save(&self) -> Result<()>; fn GetMessages( &self, lprefetchsize: i32 ) -> Result<IFaxIncomingMessageIterator>; fn GetMessage(&self, bstrmessageid: &BSTR) -> Result<IFaxIncomingMessage>;
}

Required Methods§

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

fn SetUseArchive(&self, busearchive: VARIANT_BOOL) -> Result<()>

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

fn SetArchiveFolder(&self, bstrarchivefolder: &BSTR) -> Result<()>

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

fn SetSizeQuotaWarning(&self, bsizequotawarning: VARIANT_BOOL) -> Result<()>

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

fn SetHighQuotaWaterMark(&self, lhighquotawatermark: i32) -> Result<()>

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

fn SetLowQuotaWaterMark(&self, llowquotawatermark: i32) -> Result<()>

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

fn SetAgeLimit(&self, lagelimit: i32) -> Result<()>

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

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

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

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

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

fn GetMessage(&self, bstrmessageid: &BSTR) -> Result<IFaxIncomingMessage>

Object Safety§

This trait is not object safe.

Implementors§