pub type D3 = Decimal32<3>;Expand description
A Decimal32 type with three significant figures
after the decimal point.
use high_roller::decimal::D3;
assert_eq!(D3::MAX.get(), 2147483.647_f64);
assert_eq!(D3::MIN.get(), -2147483.648_f64);
assert_eq!(D3::MIN_UNIT.get(), 0.001_f64);Aliased Typeยง
pub struct D3(/* private fields */);