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>,
}
๐Deprecated
Expand description
A copy of a row of the sounding data.
Fieldsยง
ยงpressure: Optioned<HectoPascal>
๐Deprecated
Pressure in hPa
temperature: Optioned<Celsius>
๐Deprecated
Temperature in C
wet_bulb: Optioned<Celsius>
๐Deprecated
Wet bulb temperature in C
dew_point: Optioned<Celsius>
๐Deprecated
Dew point in C
theta_e: Optioned<Kelvin>
๐Deprecated
Equivalent potential temperature in Kelvin
wind: Optioned<WindSpdDir<Knots>>
๐Deprecated
Wind
pvv: Optioned<PaPS>
๐Deprecated
Pressure vertical velocity in Pa/sec
height: Optioned<Meters>
๐Deprecated
Geopotential Height in meters
cloud_fraction: Optioned<f64>
๐Deprecated
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