Expand description
Representations of numeric types.
Structsยง
- BigDecimal
bigdecimal - A big decimal type.
- BigInt
bigdecimal - A big signed integer type.
- Decimal
rust_decimal Decimalrepresents a 128 bit representation of a fixed-precision decimal number. The finite set of values of typeDecimalare of the form m / 10e, where m is an integer such that -296 < m < 296, and e is an integer between 0 and 28 inclusive.- Numeric
- Represent a sql Decimal / Numeric type. It is stored in a i128 and has a maximum precision of 38 decimals.