Struct google_qpxexpress1::FlightInfo[][src]

pub struct FlightInfo {
    pub carrier: Option<String>,
    pub number: Option<String>,
}

A flight is a sequence of legs with the same airline carrier and flight number. (A leg is the smallest unit of travel, in the case of a flight a takeoff immediately followed by a landing at two set points on a particular carrier with a particular flight number.) The naive view is that a flight is scheduled travel of an aircraft between two points, with possibly intermediate stops, but carriers will frequently list flights that require a change of aircraft between legs.

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

Fields

no description provided

The flight number.

Trait Implementations

impl Default for FlightInfo
[src]

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

impl Clone for FlightInfo
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for FlightInfo
[src]

Formats the value using the given formatter. Read more

impl Part for FlightInfo
[src]

Auto Trait Implementations

impl Send for FlightInfo

impl Sync for FlightInfo