pub type ElectricField = Quantity<dyn Dimension<L = PInt<UInt<UTerm, B1>>, I = NInt<UInt<UTerm, B1>>, N = Z0, M = PInt<UInt<UTerm, B1>>, J = Z0, Th = Z0, Kind = dyn Kind, T = NInt<UInt<UInt<UTerm, B1>, B1>>>, dyn Units<f64, time = second, mass = kilogram, amount_of_substance = mole, electric_current = ampere, length = meter, luminous_intensity = candela, thermodynamic_temperature = kelvin>, f64>;Expand description
Quantity type alias using the default base units.
Aliased Type§
#[repr(transparent)]pub struct ElectricField {
pub dimension: PhantomData<dyn Dimension<L = PInt<UInt<UTerm, B1>>, I = NInt<UInt<UTerm, B1>>, N = Z0, M = PInt<UInt<UTerm, B1>>, J = Z0, Th = Z0, Kind = dyn Kind, T = NInt<UInt<UInt<UTerm, B1>, B1>>>>,
pub units: PhantomData<dyn Units<f64, time = second, mass = kilogram, amount_of_substance = mole, electric_current = ampere, length = meter, luminous_intensity = candela, thermodynamic_temperature = kelvin>>,
pub value: f64,
}Fields§
§dimension: PhantomData<dyn Dimension<L = PInt<UInt<UTerm, B1>>, I = NInt<UInt<UTerm, B1>>, N = Z0, M = PInt<UInt<UTerm, B1>>, J = Z0, Th = Z0, Kind = dyn Kind, T = NInt<UInt<UInt<UTerm, B1>, B1>>>>Quantity dimension. See Dimension.
units: PhantomData<dyn Units<f64, time = second, mass = kilogram, amount_of_substance = mole, electric_current = ampere, length = meter, luminous_intensity = candela, thermodynamic_temperature = kelvin>>Quantity base units. See Units.
value: f64Quantity value stored in the base units for the quantity.