[][src]Enum adsb::ADSBMessageKind

pub enum ADSBMessageKind {
    AircraftIdentification {
        emitter_category: u8,
        callsign: String,
    },
    AirbornePosition {
        altitude: u16,
        cpr_frame: CPRFrame,
    },
    AirborneVelocity {
        heading: f64,
        ground_speed: f64,
        vertical_rate: i16,
        vertical_rate_source: VerticalRateSource,
    },
}

Kind of ADSB message.

Variants

AircraftIdentification

Aicraft identification and category message (TC 1-4)

Fields of AircraftIdentification

emitter_category: u8

Emitter category used to determine the type of aircraft

callsign: String

Aircraft callsign

AirbornePosition

Airborne position message (TC 9-18)

Fields of AirbornePosition

altitude: u16

Altitude in feet

cpr_frame: CPRFrame

Odd or even frame encoding position information in CPR format

AirborneVelocity

Airborne velocity message (TC 19)

Fields of AirborneVelocity

heading: f64

Heading in degrees

ground_speed: f64

Ground speed in knots

vertical_rate: i16

Vertical rate in feet per minute, positive values indicate an aircraft is climbing and negative values indicate it is descending

vertical_rate_source: VerticalRateSource

Source for vertical rate information

Trait Implementations

impl Clone for ADSBMessageKind[src]

impl Debug for ADSBMessageKind[src]

impl PartialEq<ADSBMessageKind> for ADSBMessageKind[src]

impl StructuralPartialEq for ADSBMessageKind[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> 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.