//! Defines the `Celsius` temperature newtype and related trait impls
use ;
use UnitName;
use Fahrenheit;
use Kelvin;
/// A newtype that wraps around `f64` and provides convenience functions for unit-aware and type-safe manipulation.
;
impl_basic_ops!;
impl_unit_debug!;
impl_partial_ord!;
impl_from!;
impl_from!;