pub struct EnvWind {
pub angles: Option<Angles>,
pub gustdirchange: u8,
pub gustduration: Option<u8>,
pub maxgust: u8,
pub maxgustdelay: u8,
pub maxwind: u8,
pub mingust: u8,
pub mingustdelay: u8,
pub minwind: u8,
pub origin: Vector,
}Fields§
§angles: Option<Angles>§gustdirchange: u8§gustduration: Option<u8>§maxgust: u8§maxgustdelay: u8§maxwind: u8§mingust: u8§mingustdelay: u8§minwind: u8§origin: VectorTrait Implementations§
Source§impl<'de> Deserialize<'de> for EnvWind
impl<'de> Deserialize<'de> for EnvWind
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
Auto Trait Implementations§
impl Freeze for EnvWind
impl RefUnwindSafe for EnvWind
impl Send for EnvWind
impl Sync for EnvWind
impl Unpin for EnvWind
impl UnwindSafe for EnvWind
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more