Trait IFaxOutboundRoutingRules_Impl
pub trait IFaxOutboundRoutingRules_Impl: 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>
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.