Struct massa_models::amount::Amount

source ·
pub struct Amount(u64);
Expand description

A structure representing a decimal Amount of coins with safe operations this allows ensuring that there is never an uncontrolled overflow or precision loss while providing a convenient decimal interface for users The underlying u64 raw representation if a fixed-point value with factor AMOUNT_DECIMAL_FACTOR The minimal value is 0 and the maximal value is 18446744073.709551615(std::u64::MAX/1e9)

Tuple Fields§

§0: u64

Implementations§

source§

impl Amount

source

pub const MIN: Amount = _

Minimum amount

source

pub const MAX: Amount = _

Maximum amount

source

pub const fn zero() -> Self

Create a zero Amount

source

fn to_decimal(self) -> Decimal

Convert to decimal

source

fn from_decimal(dec: Decimal) -> Result<Self, ModelsError>

Create an Amount from a Decimal

source

pub const fn const_init(mantissa: u64, scale: u32) -> Self

Create an Amount from the form mantissa / (10^scale) in a const way. WARNING: Panics on any error. Used only for constant initialization.

let amount_1: Amount = Amount::from_str("0.042").unwrap();
let amount_2: Amount = Amount::const_init(42, 3);
assert_eq!(amount_1, amount_2);
let amount_1: Amount = Amount::from_str("1000").unwrap();
let amount_2: Amount = Amount::const_init(1000, 0);
assert_eq!(amount_1, amount_2);
source

pub fn to_mantissa_scale(&self) -> (u64, u32)

Returns the value in the (mantissa, scale) format where amount = mantissa * 10^(-scale)

let amount = Amount::from_str("0.123456789").unwrap();
let (mantissa, scale) = amount.to_mantissa_scale();
assert_eq!(mantissa, 123456789);
assert_eq!(scale, AMOUNT_DECIMAL_SCALE);
source

pub fn from_mantissa_scale( mantissa: u64, scale: u32 ) -> Result<Self, ModelsError>

Creates an amount in the format mantissa*10^(-scale).

let a = Amount::from_mantissa_scale(123, 2).unwrap();
assert_eq!(a.to_string(), "1.23");
let a = Amount::from_mantissa_scale(123, 100);
assert!(a.is_err());
source

pub const fn to_raw(&self) -> u64

Obtains the underlying raw u64 representation Warning: do not use this unless you know what you are doing because the raw value does not take the AMOUNT_DECIMAL_FACTOR into account.

source

pub const fn from_raw(raw: u64) -> Self

constructs an Amount from the underlying raw u64 representation Warning: do not use this unless you know what you are doing because the raw value does not take the AMOUNT_DECIMAL_FACTOR into account In most cases, you should be using Amount::from_str("11.23")

source

pub fn saturating_add(self, amount: Amount) -> Self

safely add self to another amount, saturating the result on overflow

source

pub fn saturating_sub(self, amount: Amount) -> Self

safely subtract another amount from self, saturating the result on underflow

source

pub fn is_zero(&self) -> bool

returns true if the amount is zero

source

pub fn checked_sub(self, amount: Amount) -> Option<Self>

safely subtract another amount from self, returning None on underflow

let amount_1 : Amount = Amount::from_str("42").unwrap();
let amount_2 : Amount = Amount::from_str("7").unwrap();
let res : Amount = amount_1.checked_sub(amount_2).unwrap();
assert_eq!(res, Amount::from_str("35").unwrap())
source

pub fn checked_add(self, amount: Amount) -> Option<Self>

safely add self to another amount, returning None on overflow

let amount_1 : Amount = Amount::from_str("42").unwrap();
let amount_2 : Amount = Amount::from_str("7").unwrap();
let res : Amount = amount_1.checked_add(amount_2).unwrap();
assert_eq!(res, Amount::from_str("49").unwrap())
source

pub fn checked_mul_u64(self, factor: u64) -> Option<Self>

safely multiply self with a u64, returning None on overflow

let amount_1 : Amount = Amount::from_str("42").unwrap();
let res : Amount = amount_1.checked_mul_u64(7).unwrap();
assert_eq!(res, Amount::from_str("294").unwrap())
source

pub const fn saturating_mul_u64(self, factor: u64) -> Self

safely multiply self with a u64, saturating the result on overflow

let amount_1 : Amount = Amount::from_str("42").unwrap();
let res : Amount = amount_1.saturating_mul_u64(7);
assert_eq!(res, Amount::from_str("294").unwrap());
source

pub fn checked_div_u64(self, factor: u64) -> Option<Self>

safely divide self by a u64, returning None if the factor is zero

let amount_1 : Amount = Amount::from_str("42").unwrap();
let res : Amount = amount_1.checked_div_u64(7).unwrap();
assert_eq!(res, Amount::from_str("6").unwrap());
source

pub fn checked_div(self, divisor: Self) -> Option<u64>

safely divide self by an amount, returning None if the divisor is zero

let amount_1 : Amount = Amount::from_str("42").unwrap();
let amount_2 : Amount = Amount::from_str("7").unwrap();
let res : u64 = amount_1.checked_div(amount_2).unwrap();
assert_eq!(res, 6);
source

pub fn checked_rem(&self, divisor: &Amount) -> Option<Amount>

compute self % divisor, return None if divisor is zero

let amount_1 : Amount = Amount::from_str("42").unwrap();
let amount_2 : Amount = Amount::from_str("10").unwrap();
let res : Amount = amount_1.checked_rem(&amount_2).unwrap();
assert_eq!(res, Amount::from_str("2").unwrap());
source

pub fn checked_rem_u64(&self, divisor: u64) -> Option<Amount>

compute self % divisor, return None if divisor is zero

let amount_1 : Amount = Amount::from_str("42").unwrap();
let res : Amount = amount_1.checked_rem_u64(40000000000).unwrap();
assert_eq!(res, Amount::from_str("2").unwrap());

Trait Implementations§

source§

impl Clone for Amount

source§

fn clone(&self) -> Amount

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 Amount

Use display implementation in debug to get the decimal representation

source§

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

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

impl Default for Amount

source§

fn default() -> Amount

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

impl<'de> Deserialize<'de> for Amount

source§

fn deserialize<D>(deserializer: D) -> Result<Amount, D::Error>where D: Deserializer<'de>,

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

impl Deserializer<Amount> for AmountDeserializer

source§

fn deserialize<'a, E: ParseError<&'a [u8]> + ContextError<&'a [u8]>>( &self, buffer: &'a [u8] ) -> IResult<&'a [u8], Amount, E>

Example
use massa_models::amount::{Amount, AmountSerializer, AmountDeserializer};
use massa_serialization::{Serializer, Deserializer, DeserializeError};
use std::str::FromStr;
use std::ops::Bound::Included;

let amount = Amount::from_str("11.111").unwrap();
let serializer = AmountSerializer::new();
let deserializer = AmountDeserializer::new(Included(Amount::MIN), Included(Amount::MAX));
let mut serialized = vec![];
serializer.serialize(&amount, &mut serialized).unwrap();
let (rest, amount_deser) = deserializer.deserialize::<DeserializeError>(&serialized).unwrap();
assert!(rest.is_empty());
assert_eq!(amount_deser, amount);
source§

impl Display for Amount

display an Amount in decimal string form (like “10.33”)

let value = Amount::from_str("11.111").unwrap();
assert_eq!(format!("{}", value), "11.111")
source§

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

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

impl From<Amount> for NativeAmount

source§

fn from(value: Amount) -> Self

Converts to this type from the input type.
source§

impl FromStr for Amount

build an Amount from decimal string form (like “10.33”) note that this will fail if the string format is invalid or if the conversion would cause an overflow, underflow or precision loss

assert!(Amount::from_str("11.1").is_ok());
assert!(Amount::from_str("11.1111111111111111111111").is_err());
assert!(Amount::from_str("1111111111111111111111").is_err());
assert!(Amount::from_str("-11.1").is_err());
assert!(Amount::from_str("abc").is_err());
§

type Err = ModelsError

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

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

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

impl Ord for Amount

source§

fn cmp(&self, other: &Amount) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Selfwhere Self: Sized + PartialOrd<Self>,

Restrict a value to a certain interval. Read more
source§

impl PartialEq<Amount> for Amount

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd<Amount> for Amount

source§

fn partial_cmp(&self, other: &Amount) -> 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

This method 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

This method 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

This method 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

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Serialize for Amount

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 Serializer<Amount> for AmountSerializer

source§

fn serialize( &self, value: &Amount, buffer: &mut Vec<u8> ) -> Result<(), SerializeError>

Example
use massa_models::amount::{Amount, AmountSerializer};
use massa_serialization::Serializer;
use std::str::FromStr;
use std::ops::Bound::Included;

let amount = Amount::from_str("11.111").unwrap();
let serializer = AmountSerializer::new();
let mut serialized = vec![];
serializer.serialize(&amount, &mut serialized).unwrap();
source§

impl Copy for Amount

source§

impl Eq for Amount

source§

impl StructuralEq for Amount

source§

impl StructuralPartialEq for Amount

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
§

impl<Q, K> Comparable<K> for Qwhere Q: Ord + ?Sized, K: Borrow<Q> + ?Sized,

§

fn compare(&self, key: &K) -> Ordering

Compare self to key and return their ordering.
§

impl<T> Conv for T

§

fn conv<T>(self) -> Twhere Self: Into<T>,

Converts self into T using Into<T>. Read more
§

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

§

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

Checks if this value is equivalent to the given key. Read more
§

impl<Q, K> Equivalent<K> for Qwhere 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 Qwhere 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.
§

impl<T> FmtForward for T

§

fn fmt_binary(self) -> FmtBinary<Self>where Self: Binary,

Causes self to use its Binary implementation when Debug-formatted.
§

fn fmt_display(self) -> FmtDisplay<Self>where Self: Display,

Causes self to use its Display implementation when Debug-formatted.
§

fn fmt_lower_exp(self) -> FmtLowerExp<Self>where Self: LowerExp,

Causes self to use its LowerExp implementation when Debug-formatted.
§

fn fmt_lower_hex(self) -> FmtLowerHex<Self>where Self: LowerHex,

Causes self to use its LowerHex implementation when Debug-formatted.
§

fn fmt_octal(self) -> FmtOctal<Self>where Self: Octal,

Causes self to use its Octal implementation when Debug-formatted.
§

fn fmt_pointer(self) -> FmtPointer<Self>where Self: Pointer,

Causes self to use its Pointer implementation when Debug-formatted.
§

fn fmt_upper_exp(self) -> FmtUpperExp<Self>where Self: UpperExp,

Causes self to use its UpperExp implementation when Debug-formatted.
§

fn fmt_upper_hex(self) -> FmtUpperHex<Self>where Self: UpperHex,

Causes self to use its UpperHex implementation when Debug-formatted.
§

fn fmt_list(self) -> FmtList<Self>where &'a Self: for<'a> IntoIterator,

Formats each item in a sequence. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> FromRef<T> for Twhere 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 Twhere 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
§

impl<T> Pipe for Twhere T: ?Sized,

§

fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere Self: Sized,

Pipes by value. This is generally the method you want to use. Read more
§

fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere R: 'a,

Borrows self and passes that borrow into the pipe function. Read more
§

fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere R: 'a,

Mutably borrows self and passes that borrow into the pipe function. Read more
§

fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> Rwhere Self: Borrow<B>, B: 'a + ?Sized, R: 'a,

Borrows self, then passes self.borrow() into the pipe function. Read more
§

fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R ) -> Rwhere Self: BorrowMut<B>, B: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.borrow_mut() into the pipe function. Read more
§

fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> Rwhere Self: AsRef<U>, U: 'a + ?Sized, R: 'a,

Borrows self, then passes self.as_ref() into the pipe function.
§

fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> Rwhere Self: AsMut<U>, U: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.as_mut() into the pipe function.
§

fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> Rwhere Self: Deref<Target = T>, T: 'a + ?Sized, R: 'a,

Borrows self, then passes self.deref() into the pipe function.
§

fn pipe_deref_mut<'a, T, R>( &'a mut self, func: impl FnOnce(&'a mut T) -> R ) -> Rwhere Self: DerefMut<Target = T> + Deref, T: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.deref_mut() into the pipe function.
source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
§

impl<T> Tap for T

§

fn tap(self, func: impl FnOnce(&Self)) -> Self

Immutable access to a value. Read more
§

fn tap_mut(self, func: impl FnOnce(&mut Self)) -> Self

Mutable access to a value. Read more
§

fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Selfwhere Self: Borrow<B>, B: ?Sized,

Immutable access to the Borrow<B> of a value. Read more
§

fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere Self: BorrowMut<B>, B: ?Sized,

Mutable access to the BorrowMut<B> of a value. Read more
§

fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Selfwhere Self: AsRef<R>, R: ?Sized,

Immutable access to the AsRef<R> view of a value. Read more
§

fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere Self: AsMut<R>, R: ?Sized,

Mutable access to the AsMut<R> view of a value. Read more
§

fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Selfwhere Self: Deref<Target = T>, T: ?Sized,

Immutable access to the Deref::Target of a value. Read more
§

fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Selfwhere Self: DerefMut<Target = T> + Deref, T: ?Sized,

Mutable access to the Deref::Target of a value. Read more
§

fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self

Calls .tap() only in debug builds, and is erased in release builds.
§

fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self

Calls .tap_mut() only in debug builds, and is erased in release builds.
§

fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Selfwhere Self: Borrow<B>, B: ?Sized,

Calls .tap_borrow() only in debug builds, and is erased in release builds.
§

fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere Self: BorrowMut<B>, B: ?Sized,

Calls .tap_borrow_mut() only in debug builds, and is erased in release builds.
§

fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Selfwhere Self: AsRef<R>, R: ?Sized,

Calls .tap_ref() only in debug builds, and is erased in release builds.
§

fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere Self: AsMut<R>, R: ?Sized,

Calls .tap_ref_mut() only in debug builds, and is erased in release builds.
§

fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Selfwhere Self: Deref<Target = T>, T: ?Sized,

Calls .tap_deref() only in debug builds, and is erased in release builds.
§

fn tap_deref_mut_dbg<T>(self, func: impl FnOnce(&mut T)) -> Selfwhere Self: DerefMut<Target = T> + Deref, T: ?Sized,

Calls .tap_deref_mut() only in debug builds, and is erased in release builds.
source§

impl<T> ToOwned for Twhere T: Clone,

§

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 Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
§

impl<T> TryConv for T

§

fn try_conv<T>(self) -> Result<T, Self::Error>where Self: TryInto<T>,

Attempts to convert self into T using TryInto<T>. Read more
source§

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

§

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 Twhere U: TryFrom<T>,

§

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 Twhere 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 Twhere T: for<'de> Deserialize<'de>,