[][src]Struct google_content2::AccountAddress

pub struct AccountAddress {
    pub postal_code: Option<String>,
    pub country: Option<String>,
    pub region: Option<String>,
    pub street_address: Option<String>,
    pub locality: Option<String>,
}

There is no detailed description.

This type is not used in any activity, and only used as part of another schema.

Fields

postal_code: Option<String>

Postal code or ZIP (e.g. "94043").

country: Option<String>

CLDR country code (e.g. "US").

region: Option<String>

Top-level administrative subdivision of the country. For example, a state like California ("CA") or a province like Quebec ("QC").

street_address: Option<String>

Street-level part of the address.

locality: Option<String>

City, town or commune. May also include dependent localities or sublocalities (e.g. neighborhoods or suburbs).

Trait Implementations

impl Clone for AccountAddress[src]

impl Debug for AccountAddress[src]

impl Default for AccountAddress[src]

impl<'de> Deserialize<'de> for AccountAddress[src]

impl Part for AccountAddress[src]

impl Serialize for AccountAddress[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any