//! Defines the `Kelvin` temperature newtype and related trait impls
use ;
use UnitName;
use Fahrenheit;
use Celsius;
/// 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!;
//since Kelvin is an absolute unit, unlike Celsius and Fahrenheit, we support scalar multiplication and division
impl_scalar_ops!;
impl_div_same!;
impl_from!;
impl_from!;