pub trait ICivicAddressReport_Impl: Sized + ILocationReport_Impl {
    // Required methods
    fn GetAddressLine1(&self) -> Result<BSTR>;
    fn GetAddressLine2(&self) -> Result<BSTR>;
    fn GetCity(&self) -> Result<BSTR>;
    fn GetStateProvince(&self) -> Result<BSTR>;
    fn GetPostalCode(&self) -> Result<BSTR>;
    fn GetCountryRegion(&self) -> Result<BSTR>;
    fn GetDetailLevel(&self) -> Result<u32>;
}

Required Methods§

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

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

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

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

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

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

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

Object Safety§

This trait is not object safe.

Implementors§