Struct google_qpxexpress1::CityData [] [src]

pub struct CityData {
    pub country: Option<String>,
    pub kind: Option<String>,
    pub code: Option<String>,
    pub name: Option<String>,
}

Information about a city that might be useful to an end-user; typically the city of an airport.

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

Fields

The two-character country code of the country the city is located in. For example, US for the United States of America.

Identifies this as a city, typically with one or more airports. Value: the fixed string qpxexpress#cityData.

The IATA character ID of a city. For example, for Boston this is BOS.

The full name of a city. An example would be: New York.

Trait Implementations

impl Debug for CityData
[src]

Formats the value using the given formatter.

impl Clone for CityData
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for CityData
[src]

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

impl Part for CityData
[src]