#[non_exhaustive]pub struct Wind {
pub wind_from_direction: Option<Quantity>,
pub wind_from_direction_range: Option<Quantity>,
pub wind_speed: Option<Quantity>,
pub wind_gust: Option<Quantity>,
}Expand description
Surface wind groups.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.wind_from_direction: Option<Quantity>Wind direction. Reported by the direction from which the wind originates.
wind_from_direction_range: Option<Quantity>Range of wind directions if they vary significantly. Reported by the direction from which the wind originates.
wind_speed: Option<Quantity>§wind_gust: Option<Quantity>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Wind
impl<'de> Deserialize<'de> for Wind
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Copy for Wind
impl StructuralPartialEq for Wind
Auto Trait Implementations§
impl Freeze for Wind
impl RefUnwindSafe for Wind
impl Send for Wind
impl Sync for Wind
impl Unpin for Wind
impl UnwindSafe for Wind
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more