pub trait IFaxOutboundRoutingRules_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn _NewEnum(&self) -> Result<IUnknown>;
    fn get_Item(&self, lindex: i32) -> Result<IFaxOutboundRoutingRule>;
    fn Count(&self) -> Result<i32>;
    fn ItemByCountryAndArea(
        &self,
        lcountrycode: i32,
        lareacode: i32
    ) -> Result<IFaxOutboundRoutingRule>;
    fn RemoveByCountryAndArea(
        &self,
        lcountrycode: i32,
        lareacode: i32
    ) -> Result<()>;
    fn Remove(&self, lindex: i32) -> Result<()>;
    fn Add(
        &self,
        lcountrycode: i32,
        lareacode: i32,
        busedevice: VARIANT_BOOL,
        bstrgroupname: &BSTR,
        ldeviceid: i32
    ) -> Result<IFaxOutboundRoutingRule>;
}

Required Methods§

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

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

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

fn ItemByCountryAndArea( &self, lcountrycode: i32, lareacode: i32 ) -> Result<IFaxOutboundRoutingRule>

fn RemoveByCountryAndArea( &self, lcountrycode: i32, lareacode: i32 ) -> Result<()>

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

fn Add( &self, lcountrycode: i32, lareacode: i32, busedevice: VARIANT_BOOL, bstrgroupname: &BSTR, ldeviceid: i32 ) -> Result<IFaxOutboundRoutingRule>

Object Safety§

This trait is not object safe.

Implementors§