Function write_decimal
pub fn write_decimal<V>(
f: &mut dyn Write,
value: V,
scale: i8,
) -> Result<(), Error>where
V: DecimalNativeType,Expand description
Like format_decimal, but writes the result to f instead of returning
a new String.