[][src]Struct metar::Metar

pub struct Metar {
    pub station: String,
    pub time: Time,
    pub wind: Wind,
    pub visibility: Visibility,
    pub cloud_layers: Vec<CloudLayer>,
    pub vert_visibility: Option<VertVisibility>,
    pub temperature: i32,
    pub dewpoint: i32,
    pub pressure: Pressure,
    pub remarks: Option<String>,
}

A complete METAR

Fields

station: String

The station making the METAR measurement

time: Time

The measurement time

wind: Wind

The current wind information

visibility: Visibility

The current visibility

cloud_layers: Vec<CloudLayer>

The current cloud layers

vert_visibility: Option<VertVisibility>

The current vertical visibility, in feet

temperature: i32

The current temperature

dewpoint: i32

The current dewpoint

pressure: Pressure

The current air pressure

remarks: Option<String>

Any remarks made about the METAR

Methods

impl Metar[src]

pub fn parse(data: String) -> Result<Self, MetarError>[src]

Parse a string into a METAR

Trait Implementations

impl Clone for Metar[src]

impl Eq for Metar[src]

impl PartialEq<Metar> for Metar[src]

impl Debug for Metar[src]

impl StructuralPartialEq for Metar[src]

impl StructuralEq for Metar[src]

Auto Trait Implementations

impl Send for Metar

impl Sync for Metar

impl Unpin for Metar

impl UnwindSafe for Metar

impl RefUnwindSafe for Metar

Blanket Implementations

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

impl<T> From<T> for 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> Borrow<T> for T where
    T: ?Sized
[src]

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

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