windows::Win32::Devices::Fax

Trait IFaxRecipients_Impl

pub trait IFaxRecipients_Impl: IDispatch_Impl {
    // Required methods
    fn _NewEnum(&self) -> Result<IUnknown>;
    fn get_Item(&self, lindex: i32) -> Result<IFaxRecipient>;
    fn Count(&self) -> Result<i32>;
    fn Add(
        &self,
        bstrfaxnumber: &BSTR,
        bstrrecipientname: &BSTR,
    ) -> Result<IFaxRecipient>;
    fn Remove(&self, lindex: i32) -> Result<()>;
}

Required Methods§

fn _NewEnum(&self) -> Result<IUnknown>

fn get_Item(&self, lindex: i32) -> Result<IFaxRecipient>

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

fn Add( &self, bstrfaxnumber: &BSTR, bstrrecipientname: &BSTR, ) -> Result<IFaxRecipient>

fn Remove(&self, lindex: i32) -> Result<()>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§