pub struct Decimal128 {
value: i128,
precision: u8,
scale: i8,
}
Expand description
128bit decimal, using the i128 to represent the decimal.
precision: the total number of digits in the number, it’s range is [1, 38].
scale: the number of digits to the right of the decimal point, it’s range is [0, precision].
Fields§
§value: i128
§precision: u8
§scale: i8
Implementations§
Source§impl Decimal128
impl Decimal128
Sourcepub fn new(value: i128, precision: u8, scale: i8) -> Self
pub fn new(value: i128, precision: u8, scale: i8) -> Self
Create a new Decimal128 from i128, precision and scale without any validation.
Sourcepub fn try_new(value: i128, precision: u8, scale: i8) -> Result<Self>
pub fn try_new(value: i128, precision: u8, scale: i8) -> Result<Self>
Try new Decimal128 from i128, precision and scale with validation.
Sourcepub fn to_scalar_value(&self) -> (Option<i128>, u8, i8)
pub fn to_scalar_value(&self) -> (Option<i128>, u8, i8)
Convert to ScalarValue(value,precision,scale)
Sourcepub fn split_value(&self) -> (i64, i64)
pub fn split_value(&self) -> (i64, i64)
split the self.value(i128) to (high-64 bit, low-64 bit), and the precision, scale information is discarded.
Return: (high-64 bit, low-64 bit)
Sourcepub fn from_value_precision_scale(
hi: i64,
lo: i64,
precision: u8,
scale: i8,
) -> Self
pub fn from_value_precision_scale( hi: i64, lo: i64, precision: u8, scale: i8, ) -> Self
Convert from precision, scale, a i128 value which represents by i64 + i64 value(high-64 bit, low-64 bit).
pub fn negative(self) -> Self
Trait Implementations§
Source§impl Clone for Decimal128
impl Clone for Decimal128
Source§fn clone(&self) -> Decimal128
fn clone(&self) -> Decimal128
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for Decimal128
impl Debug for Decimal128
Source§impl Default for Decimal128
The default value of Decimal128 is 0, and its precision is 1 and scale is 0.
impl Default for Decimal128
The default value of Decimal128 is 0, and its precision is 1 and scale is 0.
Source§impl<'de> Deserialize<'de> for Decimal128
impl<'de> Deserialize<'de> for Decimal128
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl Display for Decimal128
impl Display for Decimal128
Source§impl From<Decimal> for Decimal128
Convert from RustDecimal to Decimal128
RustDecimal can represent the range is smaller than Decimal128,
it is safe to convert RustDecimal to Decimal128
impl From<Decimal> for Decimal128
Convert from RustDecimal to Decimal128 RustDecimal can represent the range is smaller than Decimal128, it is safe to convert RustDecimal to Decimal128
Source§impl From<Decimal128> for Value
impl From<Decimal128> for Value
Source§fn from(decimal: Decimal128) -> Self
fn from(decimal: Decimal128) -> Self
Source§impl From<Decimal128> for i128
impl From<Decimal128> for i128
Source§fn from(decimal: Decimal128) -> Self
fn from(decimal: Decimal128) -> Self
Source§impl From<i128> for Decimal128
impl From<i128> for Decimal128
Source§impl FromStr for Decimal128
Convert from string to Decimal128
If the string length is less than 28, the result of rust_decimal will underflow,
In this case, use BigDecimal to get accurate result.
impl FromStr for Decimal128
Convert from string to Decimal128 If the string length is less than 28, the result of rust_decimal will underflow, In this case, use BigDecimal to get accurate result.
Source§impl Hash for Decimal128
impl Hash for Decimal128
Source§impl PartialEq for Decimal128
impl PartialEq for Decimal128
Source§impl PartialOrd for Decimal128
impl PartialOrd for Decimal128
Source§impl Serialize for Decimal128
impl Serialize for Decimal128
Source§impl TryFrom<BigDecimal> for Decimal128
Try from BigDecimal to Decimal128
The range that BigDecimal can represent is larger than Decimal128,
so it is not safe to convert BigDecimal to Decimal128,
If the BigDecimal is out of range, return error.
impl TryFrom<BigDecimal> for Decimal128
Try from BigDecimal to Decimal128 The range that BigDecimal can represent is larger than Decimal128, so it is not safe to convert BigDecimal to Decimal128, If the BigDecimal is out of range, return error.
impl Copy for Decimal128
impl Eq for Decimal128
Auto Trait Implementations§
impl Freeze for Decimal128
impl RefUnwindSafe for Decimal128
impl Send for Decimal128
impl Sync for Decimal128
impl Unpin for Decimal128
impl UnwindSafe for Decimal128
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> CallHasher for T
impl<T> CallHasher for T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request