[][src]Struct openaip::Airspace

pub struct Airspace {
    pub category: Category,
    pub version: String,
    pub id: String,
    pub country: String,
    pub name: String,
    pub top: AltitudeLimit,
    pub bottom: AltitudeLimit,
    pub geometry: Geometry,
}

Fields

category: Categoryversion: String

An openAIP specific value that represents the git commit ID that included this airspace

id: String

An openAIP specific value that represents the internal ID of this airspace

country: String

The airspace's ISO 3166-1 alpha-2 country code

name: String

The airspace name

top: AltitudeLimit

The airspace upper ceiling

bottom: AltitudeLimit

The airspace lower ceiling

geometry: Geometry

The airspace geometry element

Trait Implementations

impl Debug for Airspace[src]

impl<'a> TryFrom<&'a Element> for Airspace[src]

type Error = Error

The type returned in the event of a conversion error.

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> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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.