Measurement
Adds quantities and units to rust to allow unit safe computation
Note: this crate uses an unstable feature which requires you to add #![feature(generic_const_exprs)] and use the nightly compiler
Define new quantity
currently only three dimensions are supported: Time, Length, Mass
use ;
pub type Time = ;
pub type Length = ;
pub type Mass = ;
pub type Velocity = >;
pub type Acceleration = >;