[][src]Struct metar::Wind

pub struct Wind {
    pub dir: WindDirection,
    pub speed: WindSpeed,
    pub varying: Option<(u32, u32)>,
    pub gusting: Option<WindSpeed>,
}

Wind information

Fields

dir: WindDirection

The wind direction, in degrees

speed: WindSpeed

The current wind speed

varying: Option<(u32, u32)>

The direction the wind may be varying between, smaller always comes first

gusting: Option<WindSpeed>

The gusting speed of the wind

Trait Implementations

impl Clone for Wind[src]

impl Eq for Wind[src]

impl PartialEq<Wind> for Wind[src]

impl Debug for Wind[src]

impl StructuralPartialEq for Wind[src]

impl StructuralEq for Wind[src]

Auto Trait Implementations

impl Send for Wind

impl Sync for Wind

impl Unpin for Wind

impl UnwindSafe for Wind

impl RefUnwindSafe for Wind

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]