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