Skip to main content

Humidity

Type Alias Humidity 

Source
pub type Humidity = Ratio;
Expand description

Type for humidity measurements

Aliased Type§

#[repr(transparent)]
pub struct Humidity { pub dimension: PhantomData<dyn Dimension<Kind = dyn Kind, L = Z0, M = Z0, N = Z0, T = Z0, J = Z0, Th = Z0, I = Z0>>, pub units: PhantomData<dyn Units<f32, time = second, amount_of_substance = mole, mass = kilogram, electric_current = ampere, length = meter, thermodynamic_temperature = kelvin, luminous_intensity = candela>>, pub value: f32, }

Fields§

§dimension: PhantomData<dyn Dimension<Kind = dyn Kind, L = Z0, M = Z0, N = Z0, T = Z0, J = Z0, Th = Z0, I = Z0>>

Quantity dimension. See [Dimension].

§units: PhantomData<dyn Units<f32, time = second, amount_of_substance = mole, mass = kilogram, electric_current = ampere, length = meter, thermodynamic_temperature = kelvin, luminous_intensity = candela>>

Quantity base units. See [Units].

§value: f32

Quantity value stored in the base units for the quantity.