[][src]Struct metar::Metar

pub struct Metar<'a> {
    pub station: &'a str,
    pub time: Time,
    pub wind: Wind,
    pub visibility: Visibility,
    pub clouds: Clouds,
    pub cloud_layers: Vec<CloudLayer>,
    pub vert_visibility: Option<VertVisibility>,
    pub weather: Vec<Weather>,
    pub temperature: i32,
    pub dewpoint: i32,
    pub pressure: Pressure,
    pub remarks: Option<&'a str>,
}

A complete METAR

Fields

station: &'a str

The station making the METAR measurement

time: Time

The measurement time

wind: Wind

The current wind information

visibility: Visibility

The current visibility

clouds: Clouds

The current clouds

cloud_layers: Vec<CloudLayer>

The current clouds

vert_visibility: Option<VertVisibility>

The current vertical visibility, in feet

weather: Vec<Weather>

The current weather conditions

temperature: i32

The current temperature

dewpoint: i32

The current dewpoint

pressure: Pressure

The current air pressure

remarks: Option<&'a str>

Any remarks made about the METAR

Methods

impl<'a> Metar<'a>[src]

pub fn parse(data: &'a str) -> Result<Self, MetarError>[src]

Parse a string into a METAR

Trait Implementations

impl<'a> Clone for Metar<'a>[src]

impl<'a> Eq for Metar<'a>[src]

impl<'a> PartialEq<Metar<'a>> for Metar<'a>[src]

impl<'a> Debug for Metar<'a>[src]

impl<'a> StructuralPartialEq for Metar<'a>[src]

impl<'a> StructuralEq for Metar<'a>[src]

Auto Trait Implementations

impl<'a> Send for Metar<'a>

impl<'a> Sync for Metar<'a>

impl<'a> Unpin for Metar<'a>

impl<'a> UnwindSafe for Metar<'a>

impl<'a> RefUnwindSafe for Metar<'a>

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]