Type Alias uom::si::electric_charge_areal_density::ElectricChargeArealDensity
source · pub type ElectricChargeArealDensity<U, V> = Quantity<Dimension, U, V>;
Expand description
Electric charge areal density (base unit coulomb per square meter, m⁻² · A · s).
§Generic Parameters
U
: Base units.V
: Underlying storage type.
Aliased Type§
struct ElectricChargeArealDensity<U, V> {
pub dimension: PhantomData<dyn Dimension<L = NInt<UInt<UInt<UTerm, B1>, B0>>, T = PInt<UInt<UTerm, B1>>, Th = Z0, I = PInt<UInt<UTerm, B1>>, M = Z0, N = Z0, J = Z0, Kind = dyn ConstituentConcentrationKind>>,
pub units: PhantomData<U>,
pub value: V,
}
Fields§
§dimension: PhantomData<dyn Dimension<L = NInt<UInt<UInt<UTerm, B1>, B0>>, T = PInt<UInt<UTerm, B1>>, Th = Z0, I = PInt<UInt<UTerm, B1>>, M = Z0, N = Z0, J = Z0, Kind = dyn ConstituentConcentrationKind>>
Quantity dimension. See Dimension
.
units: PhantomData<U>
Quantity base units. See Units
.
value: V
Quantity value stored in the base units for the quantity.
Implementations§
source§impl<U, V> ElectricChargeArealDensity<U, V>
impl<U, V> ElectricChargeArealDensity<U, V>
sourcepub fn floor<N>(self) -> Self
pub fn floor<N>(self) -> Self
Returns the largest integer less than or equal to a number in the given measurement unit.
§Generic Parameters
N
: Unit.
sourcepub fn ceil<N>(self) -> Self
pub fn ceil<N>(self) -> Self
Returns the smallest integer less than or equal to a number in the given measurement unit.
§Generic Parameters
N
: Unit.
sourcepub fn round<N>(self) -> Self
pub fn round<N>(self) -> Self
Returns the nearest integer to a number in the in given measurement unit. Round half-way cases away from 0.0.
§Generic Parameters
N
: Unit.
sourcepub fn format_args<N>(_unit: N, style: DisplayStyle) -> Arguments<Dimension, N>where
N: Unit,
pub fn format_args<N>(_unit: N, style: DisplayStyle) -> Arguments<Dimension, N>where
N: Unit,
Creates a struct that can be used to format a compatible quantity for display.
§Notes
The return value of this method cannot be used to print directly, but is instead used to format quantities and can be reused; see Arguments::with and the examples below.
If you do not need to format multiple quantities, consider using
into_format_args
instead.
§Examples
let t1 = Time::new::<femtosecond>(1.0_E-1);
let t2 = Time::new::<picosecond>(1.0_E-1);
let a = Time::format_args(femtosecond, Description);
assert_eq!("0.1 femtoseconds", format!("{}", a.with(t1)));
assert_eq!("100 femtoseconds", format!("{}", a.with(t2)));
§Generic Parameters
N
: Unit.
sourcepub fn into_format_args<N>(
self,
_unit: N,
style: DisplayStyle
) -> QuantityArguments<Dimension, U, V, N>where
N: Unit,
pub fn into_format_args<N>(
self,
_unit: N,
style: DisplayStyle
) -> QuantityArguments<Dimension, U, V, N>where
N: Unit,
Creates a struct that formats self
for display.
§Notes
Unlike format_args
, the return value of this method can be
used directly for display. It will format the value of self
for the quantity on
which it is called and nothing else.
If you wish to reuse the return value to format multiple quantities, use
format_args
instead.
§Examples
let t = Time::new::<picosecond>(1.0_E-1);
let a = t.into_format_args(femtosecond, Description);
assert_eq!("100 femtoseconds", format!("{}", a));
§Generic Parameters
N
: Unit.