[][src]Struct google_spectrum1_explorer::VcardAddress

pub struct VcardAddress {
    pub code: Option<String>,
    pub street: Option<String>,
    pub locality: Option<String>,
    pub country: Option<String>,
    pub region: Option<String>,
    pub pobox: Option<String>,
}

The structure used to represent a street address.

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

Fields

code: Option<String>

The postal code associated with the address. For example: 94423.

street: Option<String>

The street number and name. For example: 123 Any St.

locality: Option<String>

The city or local equivalent portion of the address. For example: San Jose.

country: Option<String>

The country name. For example: US.

region: Option<String>

The state or local equivalent portion of the address. For example: CA.

pobox: Option<String>

An optional post office box number.

Trait Implementations

impl Part for VcardAddress[src]

impl Clone for VcardAddress[src]

impl Default for VcardAddress[src]

impl Debug for VcardAddress[src]

impl Serialize for VcardAddress[src]

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

Auto Trait Implementations

Blanket Implementations

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 = !

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Typeable for T where
    T: Any

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