Trait ICivicAddressReport_Impl
pub trait ICivicAddressReport_Impl: 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>
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.