Skip to main content

Pressure

Type Alias Pressure 

Source
pub type Pressure = Pressure;
Expand description

Type for pressure measurements

Aliased Type§

#[repr(transparent)]
pub struct Pressure { pub dimension: PhantomData<dyn Dimension<Th = Z0, M = PInt<UInt<UTerm, B1>>, N = Z0, J = Z0, L = NInt<UInt<UTerm, B1>>, I = Z0, Kind = dyn Kind, T = NInt<UInt<UInt<UTerm, B1>, B0>>>>, 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 = PInt<UInt<UTerm, B1>>, N = Z0, J = Z0, L = NInt<UInt<UTerm, B1>>, I = Z0, Kind = dyn Kind, T = NInt<UInt<UInt<UTerm, B1>, B0>>>>

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.