Struct google_spectrum1_explorer::VcardAddress[][src]

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

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

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

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

The country name. For example: US.

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

An optional post office box number.

Trait Implementations

impl Default for VcardAddress
[src]

Returns the "default value" for a type. Read more

impl Clone for VcardAddress
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for VcardAddress
[src]

Formats the value using the given formatter. Read more

impl Part for VcardAddress
[src]

Auto Trait Implementations