pub struct DataRow {
pub pressure: Optioned<HectoPascal>,
pub temperature: Optioned<Celsius>,
pub wet_bulb: Optioned<Celsius>,
pub dew_point: Optioned<Celsius>,
pub theta_e: Optioned<Kelvin>,
pub wind: Optioned<WindSpdDir<Knots>>,
pub pvv: Optioned<PaPS>,
pub height: Optioned<Meters>,
pub cloud_fraction: Optioned<f64>,
}Expand description
A copy of a row of the sounding data.
Fields§
§pressure: Optioned<HectoPascal>Pressure in hPa
temperature: Optioned<Celsius>Temperature in C
wet_bulb: Optioned<Celsius>Wet bulb temperature in C
dew_point: Optioned<Celsius>Dew point in C
theta_e: Optioned<Kelvin>Equivalent potential temperature in Kelvin
wind: Optioned<WindSpdDir<Knots>>Wind
pvv: Optioned<PaPS>Pressure vertical velocity in Pa/sec
height: Optioned<Meters>Geopotential Height in meters
cloud_fraction: Optioned<f64>Cloud fraction in percent
Trait Implementations§
impl Copy for DataRow
impl StructuralPartialEq for DataRow
Auto Trait Implementations§
impl Freeze for DataRow
impl RefUnwindSafe for DataRow
impl Send for DataRow
impl Sync for DataRow
impl Unpin for DataRow
impl UnwindSafe for DataRow
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