pub struct InputElement {
pub temperature: f32,
pub rain: f32,
pub wind_speed: f32,
pub wind_dir: f32,
pub humidity: f32,
pub snow_cover: f32,
pub ndvi: f32,
pub ndwi: f32,
pub msi: f32,
pub swi: f32,
}Fields§
§temperature: f32temperature in celsius
rain: f32rain in mm
wind_speed: f32wind speed in m/h
wind_dir: f32wind direction in radians
humidity: f32relative humidity in %
snow_cover: f32snow cover
ndvi: f32§ndwi: f32§msi: f32§swi: f32Trait Implementations§
Source§impl Debug for InputElement
impl Debug for InputElement
Auto Trait Implementations§
impl Freeze for InputElement
impl RefUnwindSafe for InputElement
impl Send for InputElement
impl Sync for InputElement
impl Unpin for InputElement
impl UnsafeUnpin for InputElement
impl UnwindSafe for InputElement
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> 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