Trait dimensioned::traits::Dimensionless[][src]

pub trait Dimensionless: Dimensioned {
    fn value(&self) -> &Self::Value;
}

This trait is implemented for all quantities with no units. The unit systems that come with dimensioned use Unitless<V> for that type.

Required Methods

Extract the value from a quantity with no units. As there are no units to ignore, it is dimensionally safe.

Implementors