Struct google_qpxexpress1::AircraftData[][src]

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

The make, model, and type of an aircraft.

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

Fields

Identifies this as an aircraftData object. Value: the fixed string qpxexpress#aircraftData

The aircraft code. For example, for a Boeing 777 the code would be 777.

The name of an aircraft, for example Boeing 777.

Trait Implementations

impl Default for AircraftData
[src]

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

impl Clone for AircraftData
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for AircraftData
[src]

Formats the value using the given formatter. Read more

impl Part for AircraftData
[src]

Auto Trait Implementations