[−][src]Struct orml_utilities::fixed_u128::FixedU128
An unsigned fixed point number. Can hold any value in the range [0, 340_282_366_920_938_463_464] with fixed point accuracy of 10 ** 18.
Trait Implementations
impl Add<FixedU128> for FixedU128[src]
type Output = Self
The resulting type after applying the + operator.
fn add(self, rhs: Self) -> Self::Output[src]
impl Bounded for FixedU128[src]
impl CheckedAdd for FixedU128[src]
fn checked_add(&self, rhs: &Self) -> Option<Self>[src]
impl CheckedDiv for FixedU128[src]
fn checked_div(&self, rhs: &Self) -> Option<Self>[src]
impl CheckedMul for FixedU128[src]
fn checked_mul(&self, rhs: &Self) -> Option<Self>[src]
impl CheckedSub for FixedU128[src]
fn checked_sub(&self, rhs: &Self) -> Option<Self>[src]
impl Clone for FixedU128[src]
impl CompactAs for FixedU128[src]
type As = u128
A compact-encodable type that should be used as the encoding.
fn encode_as(&self) -> &u128[src]
fn decode_from(x: u128) -> FixedU128[src]
impl Copy for FixedU128[src]
impl Debug for FixedU128[src]
impl Decode for FixedU128[src]
impl Default 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 Display for FixedU128[src]
impl Div<FixedU128> for FixedU128[src]
type Output = Self
The resulting type after applying the / operator.
fn div(self, rhs: Self) -> Self::Output[src]
impl Encode for FixedU128[src]
fn encode_to<EncOut: Output>(&self, dest: &mut EncOut)[src]
fn encode(&self) -> Vec<u8>[src]
fn using_encoded<R, F: FnOnce(&[u8]) -> R>(&self, f: F) -> R[src]
fn size_hint(&self) -> usize[src]
impl EncodeLike<FixedU128> for FixedU128[src]
impl Eq for FixedU128[src]
impl FixedUnsignedNumber for FixedU128[src]
type Inner = u128
const DIV: Self::Inner[src]
fn from_natural(n: Self::Inner) -> Self[src]
fn from_inner(n: Self::Inner) -> Self[src]
fn into_inner(self) -> Self::Inner[src]
fn accuracy() -> Self::Inner[src]
fn saturating_from_integer<N: UniqueSaturatedInto<Self::Inner> + PartialOrd + Zero>(
int: N
) -> Self[src]
int: N
) -> Self
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, other: N) -> Option<N>[src]
fn saturating_mul_int<N: FixedPointOperand>(self, n: N) -> N[src]
fn checked_div_int<N: FixedPointOperand>(&self, other: 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 reciprocal(self) -> Option<Self>[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 From<Compact<FixedU128>> for FixedU128[src]
impl From<Perbill> for FixedU128[src]
impl From<Percent> for FixedU128[src]
impl From<Permill> for FixedU128[src]
impl From<Perquintill> for FixedU128[src]
fn from(val: Perquintill) -> Self[src]
impl From<u128> for FixedU128[src]
impl FromStr for FixedU128[src]
type Err = &'static str
The associated error which can be returned from parsing.
fn from_str(s: &str) -> Result<Self, Self::Err>[src]
impl Mul<FixedU128> for FixedU128[src]
type Output = Self
The resulting type after applying the * operator.
fn mul(self, rhs: Self) -> Self::Output[src]
impl One for FixedU128[src]
impl Ord for FixedU128[src]
fn cmp(&self, other: &FixedU128) -> Ordering[src]
#[must_use]fn max(self, other: Self) -> Self1.21.0[src]
#[must_use]fn min(self, other: Self) -> Self1.21.0[src]
#[must_use]fn clamp(self, min: Self, max: Self) -> Self[src]
impl PartialEq<FixedU128> for FixedU128[src]
impl PartialOrd<FixedU128> for FixedU128[src]
fn partial_cmp(&self, other: &FixedU128) -> Option<Ordering>[src]
fn lt(&self, other: &FixedU128) -> bool[src]
fn le(&self, other: &FixedU128) -> bool[src]
fn gt(&self, other: &FixedU128) -> bool[src]
fn ge(&self, other: &FixedU128) -> bool[src]
impl Saturating for FixedU128[src]
fn saturating_add(self, rhs: Self) -> Self[src]
fn saturating_mul(self, rhs: Self) -> Self[src]
fn saturating_sub(self, rhs: Self) -> Self[src]
fn saturating_pow(self, exp: usize) -> Self[src]
impl Serialize for FixedU128[src]
impl StructuralEq for FixedU128[src]
impl StructuralPartialEq for FixedU128[src]
impl Sub<FixedU128> for FixedU128[src]
type Output = Self
The resulting type after applying the - operator.
fn sub(self, rhs: Self) -> Self::Output[src]
impl Zero 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> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut 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> Clear for T where
T: InitializableFromZeroed + ?Sized,
T: InitializableFromZeroed + ?Sized,
fn clear(&mut self)
impl<T> Clear for T where
T: PartialEq<T> + Eq + Default, [src]
T: PartialEq<T> + Eq + Default,
impl<S> Codec for S where
S: Encode + Decode, [src]
S: Encode + Decode,
impl<T, X> Decode for X where
T: Decode + Into<X>,
X: WrapperTypeDecode<Wrapped = T>, [src]
T: Decode + Into<X>,
X: WrapperTypeDecode<Wrapped = T>,
impl<T> DecodeAll for T where
T: Decode, [src]
T: Decode,
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T, X> Encode for X where
T: Encode + ?Sized,
X: WrapperTypeEncode<Target = T>, [src]
T: Encode + ?Sized,
X: WrapperTypeEncode<Target = T>,
fn size_hint(&self) -> usize[src]
fn using_encoded<R, F>(&self, f: F) -> R where
F: FnOnce(&[u8]) -> R, [src]
F: FnOnce(&[u8]) -> R,
fn encode(&self) -> Vec<u8>[src]
fn encode_to<W>(&self, dest: &mut W) where
W: Output, [src]
W: Output,
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>> for T where
T: Encode, [src]
T: Encode,
impl<'a, T> EncodeLike<Cow<'a, T>> for T where
T: Encode + ToOwned, [src]
T: Encode + ToOwned,
impl<T> EncodeLike<Rc<T>> for T where
T: Encode, [src]
T: Encode,
impl<T> Error for T where
T: 'static + Send + Debug + Display,
T: 'static + Send + Debug + Display,
impl<T> From<T> for T[src]
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> HasCompact for T where
T: 'static,
Compact<T>: for<'a> EncodeAsRef<'a, T>,
Compact<T>: Decode,
Compact<T>: From<T>,
Compact<T>: Into<T>,
Compact<T>: Clone,
Compact<T>: PartialEq<Compact<T>>,
Compact<T>: Eq,
Compact<T>: MaybeDebugSerde, [src]
T: 'static,
Compact<T>: for<'a> EncodeAsRef<'a, T>,
Compact<T>: Decode,
Compact<T>: From<T>,
Compact<T>: Into<T>,
Compact<T>: Clone,
Compact<T>: PartialEq<Compact<T>>,
Compact<T>: Eq,
Compact<T>: MaybeDebugSerde,
impl<T> Hashable for T where
T: Codec, [src]
T: Codec,
fn blake2_128(&self) -> [u8; 16][src]
fn blake2_256(&self) -> [u8; 32][src]
fn blake2_128_concat(&self) -> Vec<u8>[src]
fn twox_128(&self) -> [u8; 16][src]
fn twox_256(&self) -> [u8; 32][src]
fn twox_64_concat(&self) -> Vec<u8>[src]
fn identity(&self) -> Vec<u8>[src]
impl<T> InitializableFromZeroed for T where
T: Default,
T: Default,
unsafe fn initialize(place: *mut T)
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, Outer> IsWrappedBy<Outer> for T where
Outer: AsRef<T> + AsMut<T> + From<T>,
T: From<Outer>, [src]
Outer: AsRef<T> + AsMut<T> + From<T>,
T: From<Outer>,
fn from_ref(outer: &Outer) -> &T[src]
Get a reference to the inner from the outer.
fn from_mut(outer: &mut Outer) -> &mut T[src]
Get a mutable reference to the inner from the outer.
impl<T> KeyedVec for T where
T: Codec, [src]
T: Codec,
impl<T> MaybeDebug for T where
T: Debug,
T: Debug,
impl<T> MaybeDebug for T where
T: Debug,
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,
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 + Clone + PartialEq<T> + Eq + Send + Sync + Debug, [src]
T: 'static + Clone + PartialEq<T> + Eq + Send + Sync + Debug,
impl<T> Parameter for T where
T: Codec + EncodeLike<T> + Clone + Eq + Debug, [src]
T: Codec + EncodeLike<T> + Clone + Eq + Debug,
impl<T> Same<T> for T
type Output = T
Should always be Self
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> Saturating for T where
T: Clone + PartialOrd<T> + Bounded + Zero + One + CheckedMul + Saturating, [src]
T: Clone + PartialOrd<T> + Bounded + Zero + One + CheckedMul + Saturating,
fn saturating_add(self, o: T) -> T[src]
fn saturating_sub(self, o: T) -> T[src]
fn saturating_mul(self, o: T) -> T[src]
fn saturating_pow(self, exp: usize) -> T[src]
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<S, T> UncheckedInto<T> for S where
T: UncheckedFrom<S>, [src]
T: UncheckedFrom<S>,
fn unchecked_into(self) -> T[src]
impl<T, S> UniqueSaturatedFrom<T> for S where
S: TryFrom<T> + Bounded, [src]
S: TryFrom<T> + Bounded,
fn unique_saturated_from(t: T) -> S[src]
impl<T, S> UniqueSaturatedInto<T> for S where
S: TryInto<T>,
T: Bounded, [src]
S: TryInto<T>,
T: Bounded,
fn unique_saturated_into(self) -> T[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,