common_decimal::decimal128

Struct Decimal128

Source
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

Source

pub fn new(value: i128, precision: u8, scale: i8) -> Self

Create a new Decimal128 from i128, precision and scale without any validation.

Source

pub fn try_new(value: i128, precision: u8, scale: i8) -> Result<Self>

Try new Decimal128 from i128, precision and scale with validation.

Source

pub fn val(&self) -> i128

Return underlying value without precision and scale

Source

pub fn precision(&self) -> u8

Returns the precision of this decimal.

Source

pub fn scale(&self) -> i8

Returns the scale of this decimal.

Source

pub fn to_scalar_value(&self) -> (Option<i128>, u8, i8)

Convert to ScalarValue(value,precision,scale)

Source

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)

Source

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).

Source

pub fn negative(self) -> Self

Trait Implementations§

Source§

impl Clone for Decimal128

Source§

fn clone(&self) -> Decimal128

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Decimal128

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for Decimal128

The default value of Decimal128 is 0, and its precision is 1 and scale is 0.

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for Decimal128

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Display for Decimal128

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
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

Source§

fn from(rd: RustDecimal) -> Self

Converts to this type from the input type.
Source§

impl From<Decimal128> for Value

Source§

fn from(decimal: Decimal128) -> Self

Converts to this type from the input type.
Source§

impl From<Decimal128> for i128

Source§

fn from(decimal: Decimal128) -> Self

Converts to this type from the input type.
Source§

impl From<i128> for Decimal128

Source§

fn from(value: i128) -> Self

Converts to this type from the input type.
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.

Source§

type Err = Error

The associated error which can be returned from parsing.
Source§

fn from_str(s: &str) -> Result<Self, Self::Err>

Parses a string s to return a value of this type. Read more
Source§

impl Hash for Decimal128

Source§

fn hash<H: Hasher>(&self, state: &mut H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for Decimal128

Source§

fn eq(&self, other: &Self) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for Decimal128

Source§

fn partial_cmp(&self, other: &Self) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Serialize for Decimal128

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
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.

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from(value: BigDecimal) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl Copy for Decimal128

Source§

impl Eq for Decimal128

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> CallHasher for T
where T: Hash + ?Sized,

§

default fn get_hash<H, B>(value: &H, build_hasher: &B) -> u64
where H: Hash + ?Sized, B: BuildHasher,

Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> FromRef<T> for T
where T: Clone,

§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoRequest<T> for T

Source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,