pub trait IFaxIncomingMessage_Impl: Sized + IDispatch_Impl {
Show 13 methods // Required methods fn Id(&self) -> Result<BSTR>; fn Pages(&self) -> Result<i32>; fn Size(&self) -> Result<i32>; fn DeviceName(&self) -> Result<BSTR>; fn Retries(&self) -> Result<i32>; fn TransmissionStart(&self) -> Result<f64>; fn TransmissionEnd(&self) -> Result<f64>; fn CSID(&self) -> Result<BSTR>; fn TSID(&self) -> Result<BSTR>; fn CallerId(&self) -> Result<BSTR>; fn RoutingInformation(&self) -> Result<BSTR>; fn CopyTiff(&self, bstrtiffpath: &BSTR) -> Result<()>; fn Delete(&self) -> Result<()>;
}

Required Methods§

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

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

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

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

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

fn TransmissionStart(&self) -> Result<f64>

fn TransmissionEnd(&self) -> Result<f64>

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

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

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

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

fn CopyTiff(&self, bstrtiffpath: &BSTR) -> Result<()>

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

Object Safety§

This trait is not object safe.

Implementors§