1 2 3 4 5 6 7 8 9
/// The "dec!" macro for Decimal. #[macro_export] macro_rules! dec { ($e: expr) => { Decimal::from_str($e.to_string().as_str()).unwrap() }; }