Trait ITCallingCard_Impl
pub trait ITCallingCard_Impl: IDispatch_Impl {
// Required methods
fn PermanentCardID(&self) -> Result<i32>;
fn NumberOfDigits(&self) -> Result<i32>;
fn Options(&self) -> Result<i32>;
fn CardName(&self) -> Result<BSTR>;
fn SameAreaDialingRule(&self) -> Result<BSTR>;
fn LongDistanceDialingRule(&self) -> Result<BSTR>;
fn InternationalDialingRule(&self) -> Result<BSTR>;
}
Required Methods§
fn PermanentCardID(&self) -> Result<i32>
fn NumberOfDigits(&self) -> Result<i32>
fn Options(&self) -> Result<i32>
fn CardName(&self) -> Result<BSTR>
fn SameAreaDialingRule(&self) -> Result<BSTR>
fn LongDistanceDialingRule(&self) -> Result<BSTR>
fn InternationalDialingRule(&self) -> Result<BSTR>
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.