Struct sp_runtime::FixedU128 [−][src]
pub struct FixedU128(_);
Re-export top-level arithmetic stuff. 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]Re-export top-level arithmetic stuff.
pub const fn from_inner(inner: u128) -> FixedU128
[src]
const version of FixedPointNumber::from_inner
.
pub fn from_fraction(x: f64) -> FixedU128
[src]
pub fn to_fraction(self) -> f64
[src]
Trait Implementations
impl CheckedAdd for FixedU128
[src]
impl CheckedAdd for FixedU128
[src]pub fn checked_add(&self, rhs: &FixedU128) -> Option<FixedU128>
[src]
impl CheckedDiv for FixedU128
[src]
impl CheckedDiv for FixedU128
[src]pub fn checked_div(&self, other: &FixedU128) -> Option<FixedU128>
[src]
impl CheckedMul for FixedU128
[src]
impl CheckedMul for FixedU128
[src]pub fn checked_mul(&self, other: &FixedU128) -> Option<FixedU128>
[src]
impl CheckedSub for FixedU128
[src]
impl CheckedSub for FixedU128
[src]pub fn checked_sub(&self, rhs: &FixedU128) -> Option<FixedU128>
[src]
impl<'de> Deserialize<'de> for FixedU128
[src]
impl<'de> Deserialize<'de> for FixedU128
[src]pub fn deserialize<D>(
deserializer: D
) -> Result<FixedU128, <D as Deserializer<'de>>::Error> where
D: Deserializer<'de>,
[src]
deserializer: D
) -> Result<FixedU128, <D as Deserializer<'de>>::Error> where
D: Deserializer<'de>,
impl Encode for FixedU128
[src]
impl Encode for FixedU128
[src]pub fn encode_to<__CodecOutputEdqy>(
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy
) where
__CodecOutputEdqy: Output + ?Sized,
[src]
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy
) where
__CodecOutputEdqy: Output + ?Sized,
pub fn encode(&self) -> Vec<u8, Global>
[src]
pub fn using_encoded<R, F>(&self, f: F) -> R where
F: FnOnce(&[u8]) -> R,
[src]
F: FnOnce(&[u8]) -> R,
pub fn size_hint(&self) -> usize
[src]
pub fn encoded_size(&self) -> usize
[src]
impl FixedPointNumber for FixedU128
[src]
impl FixedPointNumber for FixedU128
[src]type Inner = u128
The underlying data type used for this fixed point number.
pub const DIV: <FixedU128 as FixedPointNumber>::Inner
[src]
pub const SIGNED: bool
[src]
pub fn from_inner(inner: <FixedU128 as FixedPointNumber>::Inner) -> FixedU128
[src]
pub fn into_inner(self) -> <FixedU128 as FixedPointNumber>::Inner
[src]
pub fn accuracy() -> Self::Inner
[src]
pub fn saturating_from_integer<N>(int: N) -> Self where
N: FixedPointOperand,
[src]
N: FixedPointOperand,
pub fn checked_from_integer(int: Self::Inner) -> Option<Self>
[src]
pub fn saturating_from_rational<N, D>(n: N, d: D) -> Self where
D: FixedPointOperand,
N: FixedPointOperand,
[src]
D: FixedPointOperand,
N: FixedPointOperand,
pub fn checked_from_rational<N, D>(n: N, d: D) -> Option<Self> where
D: FixedPointOperand,
N: FixedPointOperand,
[src]
D: FixedPointOperand,
N: FixedPointOperand,
pub fn checked_mul_int<N>(self, n: N) -> Option<N> where
N: FixedPointOperand,
[src]
N: FixedPointOperand,
pub fn saturating_mul_int<N>(self, n: N) -> N where
N: FixedPointOperand,
[src]
N: FixedPointOperand,
pub fn checked_div_int<N>(self, d: N) -> Option<N> where
N: FixedPointOperand,
[src]
N: FixedPointOperand,
pub fn saturating_div_int<N>(self, d: N) -> N where
N: FixedPointOperand,
[src]
N: FixedPointOperand,
pub fn saturating_mul_acc_int<N>(self, n: N) -> N where
N: FixedPointOperand,
[src]
N: FixedPointOperand,
pub fn saturating_abs(self) -> Self
[src]
pub fn reciprocal(self) -> Option<Self>
[src]
pub fn zero() -> Self
[src]
pub fn is_zero(&self) -> bool
[src]
pub fn one() -> Self
[src]
pub fn is_one(&self) -> bool
[src]
pub fn is_positive(self) -> bool
[src]
pub fn is_negative(self) -> bool
[src]
pub fn trunc(self) -> Self
[src]
pub fn frac(self) -> Self
[src]
pub fn ceil(self) -> Self
[src]
pub fn floor(self) -> Self
[src]
pub fn round(self) -> Self
[src]
impl<N, D> From<(N, D)> for FixedU128 where
D: FixedPointOperand,
N: FixedPointOperand,
[src]
impl<N, D> From<(N, D)> for FixedU128 where
D: FixedPointOperand,
N: FixedPointOperand,
[src]impl PartialOrd<FixedU128> for FixedU128
[src]
impl PartialOrd<FixedU128> for FixedU128
[src]pub fn partial_cmp(&self, other: &FixedU128) -> Option<Ordering>
[src]
#[must_use]pub fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
pub fn lt(&self, other: &Rhs) -> bool#[must_use]pub fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
pub fn le(&self, other: &Rhs) -> bool#[must_use]pub fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
pub fn gt(&self, other: &Rhs) -> bool#[must_use]pub fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
pub fn ge(&self, other: &Rhs) -> boolimpl Saturating for FixedU128
[src]
impl Saturating for FixedU128
[src]pub fn saturating_add(self, rhs: FixedU128) -> FixedU128
[src]
pub fn saturating_sub(self, rhs: FixedU128) -> FixedU128
[src]
pub fn saturating_mul(self, rhs: FixedU128) -> FixedU128
[src]
pub fn saturating_pow(self, exp: usize) -> FixedU128
[src]
impl Serialize for FixedU128
[src]
impl Serialize for FixedU128
[src]pub fn serialize<S>(
&self,
serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error> where
S: Serializer,
[src]
&self,
serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error> where
S: Serializer,
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> CheckedConversion for T
[src]
impl<T> CheckedConversion for T
[src]fn checked_from<T>(t: T) -> Option<Self> where
Self: TryFrom<T>,
[src]
Self: TryFrom<T>,
fn checked_into<T>(self) -> Option<T> where
Self: TryInto<T>,
[src]
Self: TryInto<T>,
impl<T> DecodeLimit for T where
T: Decode,
[src]
impl<T> DecodeLimit for T where
T: Decode,
[src]impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]pub fn equivalent(&self, key: &K) -> bool
[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> Instrument for T
[src]
impl<T> Instrument for T
[src]pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, Outer> IsWrappedBy<Outer> for T where
T: From<Outer>,
Outer: AsRef<T> + AsMut<T> + From<T>,
[src]
impl<T, Outer> IsWrappedBy<Outer> for T where
T: From<Outer>,
Outer: AsRef<T> + AsMut<T> + From<T>,
[src]impl<T> SaturatedConversion for T
[src]
impl<T> SaturatedConversion for T
[src]pub fn saturated_from<T>(t: T) -> Self where
Self: UniqueSaturatedFrom<T>,
[src]
Self: UniqueSaturatedFrom<T>,
pub fn saturated_into<T>(self) -> T where
Self: UniqueSaturatedInto<T>,
[src]
Self: UniqueSaturatedInto<T>,
impl<S, T> UncheckedInto<T> for S where
T: UncheckedFrom<S>,
[src]
impl<S, T> UncheckedInto<T> for S where
T: UncheckedFrom<S>,
[src]pub fn unchecked_into(self) -> T
[src]
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: 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<T> Error for T where
T: 'static + Debug + Display + Send + Sync,
[src]
T: 'static + Debug + Display + Send + Sync,
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>,
impl<T> MaybeDebug for T where
T: Debug,
[src]
T: Debug,
impl<T> MaybeDebug for T where
T: Debug,
[src]
T: Debug,
impl<T> MaybeDisplay for T where
T: Display,
[src]
T: Display,
impl<T> MaybeFromStr for T where
T: FromStr,
[src]
T: FromStr,
impl<T> MaybeRefUnwindSafe for T where
T: RefUnwindSafe,
[src]
T: RefUnwindSafe,
impl<T> MaybeSerialize for T where
T: Serialize,
[src]
T: Serialize,
impl<T> MaybeSerializeDeserialize for T where
T: DeserializeOwned + Serialize,
[src]
T: DeserializeOwned + Serialize,
impl<T> Member for T where
T: 'static + Send + Sync + Debug + Eq + PartialEq<T> + Clone,
[src]
T: 'static + Send + Sync + Debug + Eq + PartialEq<T> + Clone,