dims_core

This collection of crates are used to set up type-safe measurements.

This will allow for creating storage types for values like distance or mass, as well as preventing adding grams to feet.

The intent is for these values to be kept in-memory as Mass or Length, without having to worry about the unit except for creation of the value, and when accessing it (for display, storage, etc).

IMPORTANT

This is still a Work-In-Progress. Expect rough-edges, but I am working to smooth them out.

System and Unit Creation

These particular systems are already set up already in dims, but you can set up your own systems

The conversion formulae used for UnitSimple are as follows:

rust /// Convert the given value from this unit into the base fn to_base(&self, val: Flt) -> Flt { (val + self.offset) * self.ratio } /// Convert the given value (as the base unit) into this unit fn to_self(&self, val: Flt) -> Flt { (val / self.ratio) - self.offset }

This allows for basic units with the same zero (most of them), as well as those with different zero points (temperature).


Base Structs and Traits

Other Important Items

rust let len = MM.from(8.0); let two = len * 2.0; let one = two / 2.0;

The DEBUG_UNIT is how the value will be displayed when debugging. This could be how you want to display it, but that should be specified explicitly by consuming code.

Other Notes

Performance

There is no measurable impact on release performance compared to the stored value (from what my very basic tests can show). The Measure struct is [repr(transparent)], so everything but the value itself is optimized away. Debug mode code does have a hit to performance, however.

Crate options