1 2 3 4 5 6 7 8 9 10
#[macro_export] macro_rules! impl_from { ($from_type:ty) => { impl From<$from_type> for Decimal { fn from(num: $from_type) -> Decimal { Decimal::new(num as f64) } } }; }