[][src]Struct google_qpxexpress1::AircraftData

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

kind: Option<String>

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

code: Option<String>

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

name: Option<String>

The name of an aircraft, for example Boeing 777.

Trait Implementations

impl Clone for AircraftData[src]

impl Debug for AircraftData[src]

impl Default for AircraftData[src]

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

impl Part for AircraftData[src]

impl Serialize for AircraftData[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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> Typeable for T where
    T: Any