Struct sp_runtime::FixedU128 [−][src]
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]
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 Add<FixedU128> for FixedU128
[src]
type Output = FixedU128
The resulting type after applying the +
operator.
pub fn add(self, rhs: FixedU128) -> <FixedU128 as Add<FixedU128>>::Output
[src]
impl Bounded for FixedU128
[src]
impl CheckedAdd for FixedU128
[src]
pub fn checked_add(&self, rhs: &FixedU128) -> Option<FixedU128>
[src]
impl CheckedDiv for FixedU128
[src]
pub fn checked_div(&self, other: &FixedU128) -> Option<FixedU128>
[src]
impl CheckedMul for FixedU128
[src]
pub fn checked_mul(&self, other: &FixedU128) -> Option<FixedU128>
[src]
impl CheckedSub for FixedU128
[src]
pub fn checked_sub(&self, rhs: &FixedU128) -> Option<FixedU128>
[src]
impl Clone for FixedU128
[src]
impl Copy for FixedU128
[src]
impl Debug for FixedU128
[src]
impl Decode for FixedU128
[src]
pub fn decode<__CodecInputEdqy>(
__codec_input_edqy: &mut __CodecInputEdqy
) -> Result<FixedU128, Error> where
__CodecInputEdqy: Input,
[src]
__codec_input_edqy: &mut __CodecInputEdqy
) -> Result<FixedU128, Error> where
__CodecInputEdqy: Input,
impl Default 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 Display for FixedU128
[src]
impl Div<FixedU128> for FixedU128
[src]
type Output = FixedU128
The resulting type after applying the /
operator.
pub fn div(self, rhs: FixedU128) -> <FixedU128 as Div<FixedU128>>::Output
[src]
impl Encode for FixedU128
[src]
pub fn encode_to<__CodecOutputEdqy>(
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy
) where
__CodecOutputEdqy: Output,
[src]
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy
) where
__CodecOutputEdqy: Output,
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]
impl EncodeLike<FixedU128> for FixedU128
[src]
impl Eq 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]
D: FixedPointOperand,
N: FixedPointOperand,
impl<P> From<P> for FixedU128 where
P: PerThing,
<P as PerThing>::Inner: FixedPointOperand,
[src]
P: PerThing,
<P as PerThing>::Inner: FixedPointOperand,
impl From<u128> for FixedU128
[src]
impl FromStr for FixedU128
[src]
type Err = &'static str
The associated error which can be returned from parsing.
pub fn from_str(s: &str) -> Result<FixedU128, <FixedU128 as FromStr>::Err>
[src]
impl Mul<FixedU128> for FixedU128
[src]
type Output = FixedU128
The resulting type after applying the *
operator.
pub fn mul(self, rhs: FixedU128) -> <FixedU128 as Mul<FixedU128>>::Output
[src]
impl Neg for FixedU128
[src]
type Output = FixedU128
The resulting type after applying the -
operator.
pub fn neg(self) -> <FixedU128 as Neg>::Output
[src]
impl Ord for FixedU128
[src]
pub fn cmp(&self, other: &FixedU128) -> Ordering
[src]
#[must_use]pub fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]pub fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]pub fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]
impl PartialEq<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 le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn ge(&self, other: &Rhs) -> bool
1.0.0[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]
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 StructuralEq for FixedU128
[src]
impl StructuralPartialEq for FixedU128
[src]
impl Sub<FixedU128> 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,
pub 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: 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> DecodeAll for T where
T: Decode,
[src]
T: Decode,
impl<T> DecodeLimit for T where
T: Decode,
[src]
T: Decode,
pub fn decode_all_with_depth_limit(limit: u32, input: &[u8]) -> Result<T, Error>
[src]
pub fn decode_with_depth_limit(limit: u32, input: &[u8]) -> Result<T, Error>
[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,
impl<T> DynClone for T where
T: Clone,
[src]
T: Clone,
pub fn __clone_box(&self, Private) -> *mut ()
[src]
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: 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,
[src]
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> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, Outer> IsWrappedBy<Outer> for T where
T: From<Outer>,
Outer: AsRef<T> + AsMut<T> + From<T>,
[src]
T: From<Outer>,
Outer: AsRef<T> + AsMut<T> + From<T>,
pub fn from_ref(outer: &Outer) -> &T
[src]
Get a reference to the inner from the outer.
pub 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,
[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 + Clone + PartialEq<T> + Eq + Send + Sync + Debug,
[src]
T: 'static + Clone + PartialEq<T> + Eq + Send + Sync + Debug,
impl<T> Pointable for T
[src]
pub const ALIGN: usize
[src]
type Init = T
The type for initializers.
pub unsafe fn init(init: <T as Pointable>::Init) -> usize
[src]
pub unsafe fn deref<'a>(ptr: usize) -> &'a T
[src]
pub unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T
[src]
pub unsafe fn drop(ptr: usize)
[src]
impl<T> Same<T> for T
[src]
type Output = T
Should always be Self
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<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub 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.
pub 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.
pub 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>,
pub fn unchecked_into(self) -> T
[src]
impl<T, S> UniqueSaturatedFrom<T> for S where
S: TryFrom<T> + Bounded,
[src]
S: TryFrom<T> + Bounded,
pub fn unique_saturated_from(t: T) -> S
[src]
impl<T, S> UniqueSaturatedInto<T> for S where
T: Bounded,
S: TryInto<T>,
[src]
T: Bounded,
S: TryInto<T>,
pub fn unique_saturated_into(self) -> T
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
[src]
V: MultiLane<T>,