pub trait IDispCivicAddressReport_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn AddressLine1(&self) -> Result<BSTR>;
    fn AddressLine2(&self) -> Result<BSTR>;
    fn City(&self) -> Result<BSTR>;
    fn StateProvince(&self) -> Result<BSTR>;
    fn PostalCode(&self) -> Result<BSTR>;
    fn CountryRegion(&self) -> Result<BSTR>;
    fn DetailLevel(&self) -> Result<u32>;
    fn Timestamp(&self) -> Result<f64>;
}

Required Methods§

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

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

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

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

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

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

fn DetailLevel(&self) -> Result<u32>

fn Timestamp(&self) -> Result<f64>

Object Safety§

This trait is not object safe.

Implementors§