pub trait IFaxRecipient_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn FaxNumber(&self) -> Result<BSTR>;
    fn SetFaxNumber(&self, bstrfaxnumber: &BSTR) -> Result<()>;
    fn Name(&self) -> Result<BSTR>;
    fn SetName(&self, bstrname: &BSTR) -> Result<()>;
}

Required Methods§

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

fn SetFaxNumber(&self, bstrfaxnumber: &BSTR) -> Result<()>

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

fn SetName(&self, bstrname: &BSTR) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§