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<Th = Z0, M = Z0, N = Z0, J = Z0, L = Z0, I = Z0, Kind = dyn Kind, T = Z0>>, pub units: PhantomData<dyn Units<f32, amount_of_substance = mole, time = second, length = meter, luminous_intensity = candela, thermodynamic_temperature = kelvin, mass = kilogram, electric_current = ampere>>, pub value: f32, }

Fields§

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

Quantity dimension. See [Dimension].

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

Quantity base units. See [Units].

§value: f32

Quantity value stored in the base units for the quantity.