metric 0.1.2

zero-cost dimensional analysis for safe, unit-aware numeric computations in Rust
Documentation
1
2
3
4
5
6
7
8
9
//! This module provides newtypes for performant and safe unit-aware calculations with temperatures.

pub mod celsius;
pub mod kelvin;
pub mod fahrenheit;

pub use self::celsius::Celsius;
pub use self::kelvin::Kelvin;
pub use self::fahrenheit::Fahrenheit;