pub type Humidity = Ratio;Expand description
Type for humidity measurements
Aliased Type§
#[repr(transparent)]pub struct Humidity {
pub dimension: PhantomData<dyn Dimension<J = Z0, M = Z0, T = Z0, I = Z0, Kind = dyn Kind, L = Z0, N = Z0, Th = Z0>>,
pub units: PhantomData<dyn Units<f32, length = meter, luminous_intensity = candela, time = second, thermodynamic_temperature = kelvin, amount_of_substance = mole, electric_current = ampere, mass = kilogram>>,
pub value: f32,
}Fields§
§dimension: PhantomData<dyn Dimension<J = Z0, M = Z0, T = Z0, I = Z0, Kind = dyn Kind, L = Z0, N = Z0, Th = Z0>>Quantity dimension. See [Dimension].
units: PhantomData<dyn Units<f32, length = meter, luminous_intensity = candela, time = second, thermodynamic_temperature = kelvin, amount_of_substance = mole, electric_current = ampere, mass = kilogram>>Quantity base units. See [Units].
value: f32Quantity value stored in the base units for the quantity.