pub trait ITCallingCard_Impl: Sized + 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§

Object Safety§

This trait is not object safe.

Implementors§