pub trait ITLocationInfo_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn PermanentLocationID(&self) -> Result<i32>;
    fn CountryCode(&self) -> Result<i32>;
    fn CountryID(&self) -> Result<i32>;
    fn Options(&self) -> Result<i32>;
    fn PreferredCardID(&self) -> Result<i32>;
    fn LocationName(&self) -> Result<BSTR>;
    fn CityCode(&self) -> Result<BSTR>;
    fn LocalAccessCode(&self) -> Result<BSTR>;
    fn LongDistanceAccessCode(&self) -> Result<BSTR>;
    fn TollPrefixList(&self) -> Result<BSTR>;
    fn CancelCallWaitingCode(&self) -> Result<BSTR>;
}

Required Methods§

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

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

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

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

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

fn LocationName(&self) -> Result<BSTR>

fn CityCode(&self) -> Result<BSTR>

fn LocalAccessCode(&self) -> Result<BSTR>

fn LongDistanceAccessCode(&self) -> Result<BSTR>

fn TollPrefixList(&self) -> Result<BSTR>

fn CancelCallWaitingCode(&self) -> Result<BSTR>

Object Safety§

This trait is not object safe.

Implementors§