Struct fadroma::prelude::Decimal256

source ·
pub struct Decimal256(_);
Expand description

A fixed-point decimal value with 18 fractional digits, i.e. Decimal256(1_000_000_000_000_000_000) == 1.0

The greatest possible value that can be represented is 115792089237316195423570985008687907853269984665640564039457.584007913129639935 (which is (2^256 - 1) / 10^18)

Implementations§

source§

impl Decimal256

source

pub const DECIMAL_PLACES: u32 = 18u32

The number of decimal places. Since decimal types are fixed-point rather than floating-point, this is a constant.

source

pub const MAX: Decimal256 = Self(Uint256::MAX)

The largest value that can be represented by this decimal type.

source

pub const MIN: Decimal256 = Self(Uint256::MIN)

The smallest value that can be represented by this decimal type.

source

pub const fn new(value: Uint256) -> Decimal256

Creates a Decimal256 from Uint256 This is equivalent to Decimal256::from_atomics(value, 18) but usable in a const context.

source

pub const fn raw(value: u128) -> Decimal256

Creates a Decimal256 from u128 This is equivalent to Decimal256::from_atomics(value, 18) but usable in a const context.

source

pub const fn one() -> Decimal256

Create a 1.0 Decimal256

source

pub const fn zero() -> Decimal256

Create a 0.0 Decimal256

source

pub fn percent(x: u64) -> Decimal256

Convert x% into Decimal256

source

pub fn permille(x: u64) -> Decimal256

Convert permille (x/1000) into Decimal256

source

pub fn from_atomics( atomics: impl Into<Uint256>, decimal_places: u32 ) -> Result<Decimal256, Decimal256RangeExceeded>

Creates a decimal from a number of atomic units and the number of decimal places. The inputs will be converted internally to form a decimal with 18 decimal places. So the input 123 and 2 will create the decimal 1.23.

Using 18 decimal places is slightly more efficient than other values as no internal conversion is necessary.

Examples
let a = Decimal256::from_atomics(1234u64, 3).unwrap();
assert_eq!(a.to_string(), "1.234");

let a = Decimal256::from_atomics(1234u128, 0).unwrap();
assert_eq!(a.to_string(), "1234");

let a = Decimal256::from_atomics(1u64, 18).unwrap();
assert_eq!(a.to_string(), "0.000000000000000001");

let a = Decimal256::from_atomics(Uint256::MAX, 18).unwrap();
assert_eq!(a, Decimal256::MAX);
source

pub fn from_ratio( numerator: impl Into<Uint256>, denominator: impl Into<Uint256> ) -> Decimal256

Returns the ratio (numerator / denominator) as a Decimal256

source

pub fn checked_from_ratio( numerator: impl Into<Uint256>, denominator: impl Into<Uint256> ) -> Result<Decimal256, CheckedFromRatioError>

Returns the ratio (numerator / denominator) as a Decimal256

source

pub const fn is_zero(&self) -> bool

source

pub const fn atomics(&self) -> Uint256

A decimal is an integer of atomic units plus a number that specifies the position of the decimal dot. So any decimal can be expressed as two numbers.

Examples
// Value with whole and fractional part
let a = Decimal256::from_str("1.234").unwrap();
assert_eq!(a.decimal_places(), 18);
assert_eq!(a.atomics(), Uint256::from(1234000000000000000u128));

// Smallest possible value
let b = Decimal256::from_str("0.000000000000000001").unwrap();
assert_eq!(b.decimal_places(), 18);
assert_eq!(b.atomics(), Uint256::from(1u128));
source

pub const fn decimal_places(&self) -> u32

The number of decimal places. This is a constant value for now but this could potentially change as the type evolves.

See also Decimal256::atomics().

source

pub fn floor(&self) -> Decimal256

Rounds value down after decimal places.

source

pub fn ceil(&self) -> Decimal256

Rounds value up after decimal places. Panics on overflow.

source

pub fn checked_ceil(&self) -> Result<Decimal256, RoundUpOverflowError>

Rounds value up after decimal places. Returns OverflowError on overflow.

source

pub fn checked_add(self, other: Decimal256) -> Result<Decimal256, OverflowError>

source

pub fn checked_sub(self, other: Decimal256) -> Result<Decimal256, OverflowError>

source

pub fn checked_mul(self, other: Decimal256) -> Result<Decimal256, OverflowError>

Multiplies one Decimal256 by another, returning an OverflowError if an overflow occurred.

source

pub fn pow(self, exp: u32) -> Decimal256

Raises a value to the power of exp, panics if an overflow occurred.

source

pub fn checked_pow(self, exp: u32) -> Result<Decimal256, OverflowError>

Raises a value to the power of exp, returning an OverflowError if an overflow occurred.

source

pub fn checked_div( self, other: Decimal256 ) -> Result<Decimal256, CheckedFromRatioError>

source

pub fn checked_rem( self, other: Decimal256 ) -> Result<Decimal256, DivideByZeroError>

source

pub fn sqrt(&self) -> Decimal256

Returns the approximate square root as a Decimal256.

This should not overflow or panic.

source

pub fn abs_diff(self, other: Decimal256) -> Decimal256

source

pub fn saturating_add(self, other: Decimal256) -> Decimal256

source

pub fn saturating_sub(self, other: Decimal256) -> Decimal256

source

pub fn saturating_mul(self, other: Decimal256) -> Decimal256

source

pub fn saturating_pow(self, exp: u32) -> Decimal256

Trait Implementations§

source§

impl Add<&Decimal256> for &Decimal256

§

type Output = <Decimal256 as Add<Decimal256>>::Output

The resulting type after applying the + operator.
source§

fn add(self, other: &Decimal256) -> <Decimal256 as Add<Decimal256>>::Output

Performs the + operation. Read more
source§

impl Add<&Decimal256> for Decimal256

§

type Output = <Decimal256 as Add<Decimal256>>::Output

The resulting type after applying the + operator.
source§

fn add(self, other: &Decimal256) -> <Decimal256 as Add<Decimal256>>::Output

Performs the + operation. Read more
source§

impl<'a> Add<Decimal256> for &'a Decimal256

§

type Output = <Decimal256 as Add<Decimal256>>::Output

The resulting type after applying the + operator.
source§

fn add(self, other: Decimal256) -> <Decimal256 as Add<Decimal256>>::Output

Performs the + operation. Read more
source§

impl Add<Decimal256> for Decimal256

§

type Output = Decimal256

The resulting type after applying the + operator.
source§

fn add(self, other: Decimal256) -> Decimal256

Performs the + operation. Read more
source§

impl AddAssign<&Decimal256> for Decimal256

source§

fn add_assign(&mut self, other: &Decimal256)

Performs the += operation. Read more
source§

impl AddAssign<Decimal256> for Decimal256

source§

fn add_assign(&mut self, rhs: Decimal256)

Performs the += operation. Read more
source§

impl Canonize for Decimal256

§

type Output = Decimal256

source§

fn canonize(self, _api: &dyn Api) -> StdResult<Self::Output>

source§

impl Clone for Decimal256

source§

fn clone(&self) -> Decimal256

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 Decimal256

source§

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

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

impl Default for Decimal256

source§

fn default() -> Decimal256

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

impl<'de> Deserialize<'de> for Decimal256

Deserializes as a base64 string

source§

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

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

impl Display for Decimal256

source§

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

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

impl Div<&Decimal256> for &Decimal256

§

type Output = <Decimal256 as Div<Decimal256>>::Output

The resulting type after applying the / operator.
source§

fn div(self, other: &Decimal256) -> <Decimal256 as Div<Decimal256>>::Output

Performs the / operation. Read more
source§

impl Div<&Decimal256> for Decimal256

§

type Output = <Decimal256 as Div<Decimal256>>::Output

The resulting type after applying the / operator.
source§

fn div(self, other: &Decimal256) -> <Decimal256 as Div<Decimal256>>::Output

Performs the / operation. Read more
source§

impl<'a> Div<Decimal256> for &'a Decimal256

§

type Output = <Decimal256 as Div<Decimal256>>::Output

The resulting type after applying the / operator.
source§

fn div(self, other: Decimal256) -> <Decimal256 as Div<Decimal256>>::Output

Performs the / operation. Read more
source§

impl Div<Decimal256> for Decimal256

§

type Output = Decimal256

The resulting type after applying the / operator.
source§

fn div(self, other: Decimal256) -> Decimal256

Performs the / operation. Read more
source§

impl Div<Uint256> for Decimal256

§

type Output = Decimal256

The resulting type after applying the / operator.
source§

fn div(self, rhs: Uint256) -> <Decimal256 as Div<Uint256>>::Output

Performs the / operation. Read more
source§

impl DivAssign<&Decimal256> for Decimal256

source§

fn div_assign(&mut self, other: &Decimal256)

Performs the /= operation. Read more
source§

impl DivAssign<Decimal256> for Decimal256

source§

fn div_assign(&mut self, rhs: Decimal256)

Performs the /= operation. Read more
source§

impl DivAssign<Uint256> for Decimal256

source§

fn div_assign(&mut self, rhs: Uint256)

Performs the /= operation. Read more
source§

impl FadromaDeserialize for Decimal256

source§

fn from_bytes<'a>(de: &mut Deserializer<'a>) -> Result<Self>

Deserialize into a new instance by reading bytes from the provided Deserializer.
source§

impl FadromaSerialize for Decimal256

source§

fn size_hint(&self) -> usize

The size in bytes of the particular instance when converted to its byte respresentation. While it’s preferred that this method returns an exact size (or at least a bigger estimation) it’s not an error to return an incorrect number. The penalty for doing so is potentially incurring unnecessary re-allocations.
source§

fn to_bytes(&self, ser: &mut Serializer) -> Result<()>

Serialize the instance into bytes by writing to the provided Serializer.
source§

impl Fraction<Uint256> for Decimal256

source§

fn inv(&self) -> Option<Decimal256>

Returns the multiplicative inverse 1/d for decimal d.

If d is zero, none is returned.

source§

fn numerator(&self) -> Uint256

Returns the numerator p
source§

fn denominator(&self) -> Uint256

Returns the denominator q
source§

impl From<Decimal> for Decimal256

source§

fn from(input: Decimal) -> Decimal256

Converts to this type from the input type.
source§

impl FromStr for Decimal256

source§

fn from_str(input: &str) -> Result<Decimal256, <Decimal256 as FromStr>::Err>

Converts the decimal string to a Decimal256 Possible inputs: “1.23”, “1”, “000012”, “1.123000000” Disallowed: “”, “.23”

This never performs any kind of rounding. More than DECIMAL_PLACES fractional digits, even zeros, result in an error.

§

type Err = StdError

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

impl Humanize for Decimal256

§

type Output = Decimal256

source§

fn humanize(self, _api: &dyn Api) -> StdResult<Self::Output>

source§

impl JsonSchema for Decimal256

source§

fn schema_name() -> String

The name of the generated JSON Schema. Read more
source§

fn json_schema(gen: &mut SchemaGenerator) -> Schema

Generates a JSON Schema for this type. Read more
source§

fn is_referenceable() -> bool

Whether JSON Schemas generated for this type should be re-used where possible using the $ref keyword. Read more
source§

impl Mul<&Decimal256> for &Decimal256

§

type Output = <Decimal256 as Mul<Decimal256>>::Output

The resulting type after applying the * operator.
source§

fn mul(self, other: &Decimal256) -> <Decimal256 as Mul<Decimal256>>::Output

Performs the * operation. Read more
source§

impl Mul<&Decimal256> for Decimal256

§

type Output = <Decimal256 as Mul<Decimal256>>::Output

The resulting type after applying the * operator.
source§

fn mul(self, other: &Decimal256) -> <Decimal256 as Mul<Decimal256>>::Output

Performs the * operation. Read more
source§

impl<'a> Mul<Decimal256> for &'a Decimal256

§

type Output = <Decimal256 as Mul<Decimal256>>::Output

The resulting type after applying the * operator.
source§

fn mul(self, other: Decimal256) -> <Decimal256 as Mul<Decimal256>>::Output

Performs the * operation. Read more
source§

impl Mul<Decimal256> for Decimal256

§

type Output = Decimal256

The resulting type after applying the * operator.
source§

fn mul(self, other: Decimal256) -> Decimal256

Performs the * operation. Read more
source§

impl Mul<Decimal256> for Uint256

Both du and ud with d: Decimal256 and u: Uint256 returns an Uint256. There is no specific reason for this decision other than the initial use cases we have. If you need a Decimal256 result for the same calculation, use Decimal256(du) or Decimal256(ud).

§

type Output = Uint256

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Decimal256) -> <Uint256 as Mul<Decimal256>>::Output

Performs the * operation. Read more
source§

impl Mul<Uint256> for Decimal256

§

type Output = Uint256

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Uint256) -> <Decimal256 as Mul<Uint256>>::Output

Performs the * operation. Read more
source§

impl MulAssign<&Decimal256> for Decimal256

source§

fn mul_assign(&mut self, other: &Decimal256)

Performs the *= operation. Read more
source§

impl MulAssign<Decimal256> for Decimal256

source§

fn mul_assign(&mut self, rhs: Decimal256)

Performs the *= operation. Read more
source§

impl Ord for Decimal256

source§

fn cmp(&self, other: &Decimal256) -> 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<&Decimal256> for Decimal256

source§

fn eq(&self, rhs: &&Decimal256) -> 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 PartialEq<Decimal256> for &Decimal256

source§

fn eq(&self, rhs: &Decimal256) -> 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 PartialEq<Decimal256> for Decimal256

source§

fn eq(&self, other: &Decimal256) -> 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<Decimal256> for Decimal256

source§

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

§

type Output = <Decimal256 as Rem<Decimal256>>::Output

The resulting type after applying the % operator.
source§

fn rem(self, other: &Decimal256) -> <Decimal256 as Rem<Decimal256>>::Output

Performs the % operation. Read more
source§

impl Rem<&Decimal256> for Decimal256

§

type Output = <Decimal256 as Rem<Decimal256>>::Output

The resulting type after applying the % operator.
source§

fn rem(self, other: &Decimal256) -> <Decimal256 as Rem<Decimal256>>::Output

Performs the % operation. Read more
source§

impl<'a> Rem<Decimal256> for &'a Decimal256

§

type Output = <Decimal256 as Rem<Decimal256>>::Output

The resulting type after applying the % operator.
source§

fn rem(self, other: Decimal256) -> <Decimal256 as Rem<Decimal256>>::Output

Performs the % operation. Read more
source§

impl Rem<Decimal256> for Decimal256

source§

fn rem(self, rhs: Decimal256) -> Decimal256

Panics

This operation will panic if rhs is zero

§

type Output = Decimal256

The resulting type after applying the % operator.
source§

impl RemAssign<&Decimal256> for Decimal256

source§

fn rem_assign(&mut self, other: &Decimal256)

Performs the %= operation. Read more
source§

impl RemAssign<Decimal256> for Decimal256

source§

fn rem_assign(&mut self, rhs: Decimal256)

Performs the %= operation. Read more
source§

impl Serialize for Decimal256

Serializes as a decimal string

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Sub<&Decimal256> for &Decimal256

§

type Output = <Decimal256 as Sub<Decimal256>>::Output

The resulting type after applying the - operator.
source§

fn sub(self, other: &Decimal256) -> <Decimal256 as Sub<Decimal256>>::Output

Performs the - operation. Read more
source§

impl Sub<&Decimal256> for Decimal256

§

type Output = <Decimal256 as Sub<Decimal256>>::Output

The resulting type after applying the - operator.
source§

fn sub(self, other: &Decimal256) -> <Decimal256 as Sub<Decimal256>>::Output

Performs the - operation. Read more
source§

impl<'a> Sub<Decimal256> for &'a Decimal256

§

type Output = <Decimal256 as Sub<Decimal256>>::Output

The resulting type after applying the - operator.
source§

fn sub(self, other: Decimal256) -> <Decimal256 as Sub<Decimal256>>::Output

Performs the - operation. Read more
source§

impl Sub<Decimal256> for Decimal256

§

type Output = Decimal256

The resulting type after applying the - operator.
source§

fn sub(self, other: Decimal256) -> Decimal256

Performs the - operation. Read more
source§

impl SubAssign<&Decimal256> for Decimal256

source§

fn sub_assign(&mut self, other: &Decimal256)

Performs the -= operation. Read more
source§

impl SubAssign<Decimal256> for Decimal256

source§

fn sub_assign(&mut self, rhs: Decimal256)

Performs the -= operation. Read more
source§

impl<A> Sum<A> for Decimal256where Decimal256: Add<A, Output = Decimal256>,

source§

fn sum<I>(iter: I) -> Decimal256where I: Iterator<Item = A>,

Method which takes an iterator and generates Self from the elements by “summing up” the items.
source§

impl Copy for Decimal256

source§

impl Eq for Decimal256

source§

impl StructuralEq for Decimal256

source§

impl StructuralPartialEq for Decimal256

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
source§

impl<T> DynClone for Twhere T: Clone,

source§

fn __clone_box(&self, _: Private) -> *mut ()

source§

impl<T> FadromaSerializeExt for Twhere T: FadromaSerialize,

source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

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> Same<T> for T

§

type Output = T

Should always be Self
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
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

source§

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

§

impl<T, Rhs, Output> GroupOps<Rhs, Output> for Twhere T: Add<Rhs, Output = Output> + Sub<Rhs, Output = Output> + AddAssign<Rhs> + SubAssign<Rhs>,

§

impl<T, Rhs, Output> GroupOpsOwned<Rhs, Output> for Twhere T: for<'r> GroupOps<&'r Rhs, Output>,

source§

impl<T> Permission for Twhere T: Serialize + JsonSchema + Clone + PartialEq<T>,

§

impl<T, Rhs, Output> ScalarMul<Rhs, Output> for Twhere T: Mul<Rhs, Output = Output> + MulAssign<Rhs>,

§

impl<T, Rhs, Output> ScalarMulOwned<Rhs, Output> for Twhere T: for<'r> ScalarMul<&'r Rhs, Output>,