Struct sp_arithmetic::fixed_point::FixedU128 [−][src]
pub struct FixedU128(_);
A fixed point number representation in the range.
Fixed Point 128 bits unsigned, range = [0.000000000000000000, 340282366920938463463.374607431768211455]
Implementations
impl FixedU128
[src]
impl FixedU128
[src]pub const fn from_inner(inner: u128) -> Self
[src]
const version of FixedPointNumber::from_inner
.
pub fn from_fraction(x: f64) -> Self
[src]
pub fn to_fraction(self) -> f64
[src]
Trait Implementations
impl CheckedAdd for FixedU128
[src]
impl CheckedAdd for FixedU128
[src]fn checked_add(&self, rhs: &Self) -> Option<Self>
[src]
impl CheckedDiv for FixedU128
[src]
impl CheckedDiv for FixedU128
[src]fn checked_div(&self, other: &Self) -> Option<Self>
[src]
impl CheckedMul for FixedU128
[src]
impl CheckedMul for FixedU128
[src]fn checked_mul(&self, other: &Self) -> Option<Self>
[src]
impl CheckedSub for FixedU128
[src]
impl CheckedSub for FixedU128
[src]fn checked_sub(&self, rhs: &Self) -> Option<Self>
[src]
impl<'de> Deserialize<'de> for FixedU128
[src]
impl<'de> Deserialize<'de> for FixedU128
[src]fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]
D: Deserializer<'de>,
impl FixedPointNumber for FixedU128
[src]
impl FixedPointNumber for FixedU128
[src]type Inner = u128
The underlying data type used for this fixed point number.
const DIV: Self::Inner
[src]
const SIGNED: bool
[src]
fn from_inner(inner: Self::Inner) -> Self
[src]
fn into_inner(self) -> Self::Inner
[src]
fn accuracy() -> Self::Inner
[src]
fn saturating_from_integer<N: FixedPointOperand>(int: N) -> Self
[src]
fn checked_from_integer(int: Self::Inner) -> Option<Self>
[src]
fn saturating_from_rational<N: FixedPointOperand, D: FixedPointOperand>(
n: N,
d: D
) -> Self
[src]
n: N,
d: D
) -> Self
fn checked_from_rational<N: FixedPointOperand, D: FixedPointOperand>(
n: N,
d: D
) -> Option<Self>
[src]
n: N,
d: D
) -> Option<Self>
fn checked_mul_int<N: FixedPointOperand>(self, n: N) -> Option<N>
[src]
fn saturating_mul_int<N: FixedPointOperand>(self, n: N) -> N
[src]
fn checked_div_int<N: FixedPointOperand>(self, d: N) -> Option<N>
[src]
fn saturating_div_int<N: FixedPointOperand>(self, d: N) -> N
[src]
fn saturating_mul_acc_int<N: FixedPointOperand>(self, n: N) -> N
[src]
fn saturating_abs(self) -> Self
[src]
fn reciprocal(self) -> Option<Self>
[src]
fn zero() -> Self
[src]
fn is_zero(&self) -> bool
[src]
fn one() -> Self
[src]
fn is_one(&self) -> bool
[src]
fn is_positive(self) -> bool
[src]
fn is_negative(self) -> bool
[src]
fn trunc(self) -> Self
[src]
fn frac(self) -> Self
[src]
fn ceil(self) -> Self
[src]
fn floor(self) -> Self
[src]
fn round(self) -> Self
[src]
impl<N: FixedPointOperand, D: FixedPointOperand> From<(N, D)> for FixedU128
[src]
impl<N: FixedPointOperand, D: FixedPointOperand> From<(N, D)> for FixedU128
[src]impl PartialOrd<FixedU128> for FixedU128
[src]
impl PartialOrd<FixedU128> for FixedU128
[src]impl Saturating for FixedU128
[src]
impl Saturating for FixedU128
[src]fn saturating_add(self, rhs: Self) -> Self
[src]
fn saturating_sub(self, rhs: Self) -> Self
[src]
fn saturating_mul(self, rhs: Self) -> Self
[src]
fn saturating_pow(self, exp: usize) -> Self
[src]
impl Copy for FixedU128
[src]
impl EncodeLike<FixedU128> for FixedU128
[src]
impl Eq for FixedU128
[src]
impl StructuralEq for FixedU128
[src]
impl StructuralPartialEq for FixedU128
[src]
Auto Trait Implementations
impl RefUnwindSafe for FixedU128
impl Send for FixedU128
impl Sync for FixedU128
impl Unpin for FixedU128
impl UnwindSafe for FixedU128
Blanket Implementations
impl<T> DecodeLimit for T where
T: Decode,
[src]
impl<T> DecodeLimit for T where
T: Decode,
[src]impl<T> HasCompact for T where
T: 'static,
Compact<T>: for<'a> EncodeAsRef<'a, T>,
Compact<T>: Decode,
Compact<T>: From<T>,
Compact<T>: Into<T>,
[src]
impl<T> HasCompact for T where
T: 'static,
Compact<T>: for<'a> EncodeAsRef<'a, T>,
Compact<T>: Decode,
Compact<T>: From<T>,
Compact<T>: Into<T>,
[src]impl<T> SaturatedConversion for T
[src]
impl<T> SaturatedConversion for T
[src]fn saturated_from<T>(t: T) -> Self where
Self: UniqueSaturatedFrom<T>,
[src]
Self: UniqueSaturatedFrom<T>,
fn saturated_into<T>(self) -> T where
Self: UniqueSaturatedInto<T>,
[src]
Self: UniqueSaturatedInto<T>,
impl<T, S> UniqueSaturatedFrom<T> for S where
S: TryFrom<T> + Bounded,
[src]
impl<T, S> UniqueSaturatedFrom<T> for S where
S: TryFrom<T> + Bounded,
[src]pub fn unique_saturated_from(T) -> S
[src]
impl<T, S> UniqueSaturatedInto<T> for S where
T: Bounded,
S: TryInto<T>,
[src]
impl<T, S> UniqueSaturatedInto<T> for S where
T: Bounded,
S: TryInto<T>,
[src]pub fn unique_saturated_into(Self) -> T
[src]
impl<S> Codec for S where
S: Decode + Encode,
[src]
S: Decode + Encode,
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,
impl<'_, '_, T> EncodeLike<&'_ &'_ T> for T where
T: Encode,
[src]
T: Encode,
impl<'_, T> EncodeLike<&'_ T> for T where
T: Encode,
[src]
T: Encode,
impl<'_, T> EncodeLike<&'_ mut T> for T where
T: Encode,
[src]
T: Encode,
impl<T> EncodeLike<Arc<T>> for T where
T: Encode,
[src]
T: Encode,
impl<T> EncodeLike<Box<T, Global>> for T where
T: Encode,
[src]
T: Encode,
impl<'a, T> EncodeLike<Cow<'a, T>> for T where
T: ToOwned + Encode,
[src]
T: ToOwned + Encode,
impl<T> EncodeLike<Rc<T>> for T where
T: Encode,
[src]
T: Encode,
impl<S> FullCodec for S where
S: Decode + FullEncode,
[src]
S: Decode + FullEncode,
impl<S> FullEncode for S where
S: Encode + EncodeLike<S>,
[src]
S: Encode + EncodeLike<S>,