Struct sp_arithmetic::FixedU128 [−][src]
A fixed point number representation in the range.
Fixed Point 128 bits unsigned, range = [0.000000000000000000, 340282366920938463463.374607431768211455]
Implementations
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 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, other: &Self) -> Option<Self>
[src]
impl CheckedMul for FixedU128
[src]
fn checked_mul(&self, other: &Self) -> Option<Self>
[src]
impl CheckedSub for FixedU128
[src]
fn checked_sub(&self, rhs: &Self) -> Option<Self>
[src]
impl Clone for FixedU128
[src]
impl Copy for FixedU128
[src]
impl Debug for FixedU128
[src]
impl Decode for FixedU128
[src]
fn decode<__CodecInputEdqy: Input>(
__codec_input_edqy: &mut __CodecInputEdqy
) -> Result<Self, Error>
[src]
__codec_input_edqy: &mut __CodecInputEdqy
) -> Result<Self, Error>
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<__CodecOutputEdqy: Output>(
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy
)
[src]
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy
)
fn encode(&self) -> Vec<u8>
[src]
fn using_encoded<R, F: FnOnce(&[u8]) -> R>(&self, f: F) -> R
[src]
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.
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<P: PerThing> From<P> for FixedU128 where
P::Inner: FixedPointOperand,
[src]
P::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.
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 Neg for FixedU128
[src]
type Output = Self
The resulting type after applying the -
operator.
fn neg(self) -> Self::Output
[src]
impl Ord for FixedU128
[src]
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]
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]
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 Serialize for FixedU128
[src]
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<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> 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> 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, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> KeyedVec for T where
T: Codec,
[src]
T: Codec,
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> 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<T, S> UniqueSaturatedFrom<T> for S where
S: TryFrom<T> + Bounded,
[src]
S: TryFrom<T> + Bounded,
pub fn unique_saturated_from(T) -> S
[src]
impl<T, S> UniqueSaturatedInto<T> for S where
T: Bounded,
S: TryInto<T>,
[src]
T: Bounded,
S: TryInto<T>,