[][src]Struct sp_runtime::Perquintill

pub struct Perquintill(_);

Re-export top-level arithmetic stuff. A fixed point representation of a number in the range [0, 1].

Parts per Quintillion

Implementations

impl Perquintill[src]

Re-export top-level arithmetic stuff.

pub const fn from_parts(parts: u64) -> Perquintill[src]

From an explicitly defined number of parts per maximum of the type.

pub const fn from_percent(x: u64) -> Perquintill[src]

Converts a percent into Self. Equal to x / 100.

This can be created at compile time.

pub const fn one() -> Perquintill[src]

pub fn is_one(&self) -> bool[src]

pub const fn zero() -> Perquintill[src]

pub fn is_zero(&self) -> bool[src]

pub const fn deconstruct(self) -> u64[src]

pub fn square(self) -> Perquintill[src]

pub fn from_fraction(x: f64) -> Perquintill[src]

pub fn from_rational_approximation<N>(p: N, q: N) -> Perquintill where
    N: Clone + Ord + From<u64> + TryInto<u64> + TryInto<u128> + Div<N, Output = N> + Rem<N, Output = N> + Add<N, Output = N> + Unsigned
[src]

pub fn mul_floor<N>(self, b: N) -> N where
    N: Clone + From<u64> + UniqueSaturatedInto<u64> + Rem<N, Output = N> + Div<N, Output = N> + Mul<N, Output = N> + Add<N, Output = N> + Unsigned
[src]

pub fn mul_ceil<N>(self, b: N) -> N where
    N: Clone + From<u64> + UniqueSaturatedInto<u64> + Rem<N, Output = N> + Div<N, Output = N> + Mul<N, Output = N> + Add<N, Output = N> + Unsigned
[src]

pub fn saturating_reciprocal_mul<N>(self, b: N) -> N where
    N: Clone + From<u64> + UniqueSaturatedInto<u64> + Rem<N, Output = N> + Div<N, Output = N> + Mul<N, Output = N> + Add<N, Output = N> + Saturating + Unsigned
[src]

pub fn saturating_reciprocal_mul_floor<N>(self, b: N) -> N where
    N: Clone + From<u64> + UniqueSaturatedInto<u64> + Rem<N, Output = N> + Div<N, Output = N> + Mul<N, Output = N> + Add<N, Output = N> + Saturating + Unsigned
[src]

pub fn saturating_reciprocal_mul_ceil<N>(self, b: N) -> N where
    N: Clone + From<u64> + UniqueSaturatedInto<u64> + Rem<N, Output = N> + Div<N, Output = N> + Mul<N, Output = N> + Add<N, Output = N> + Saturating + Unsigned
[src]

Trait Implementations

impl Bounded for Perquintill[src]

impl Clone for Perquintill[src]

impl CompactAs for Perquintill[src]

type As = u64

A compact-encodable type that should be used as the encoding.

impl Copy for Perquintill[src]

impl Debug for Perquintill[src]

impl Decode for Perquintill[src]

impl Default for Perquintill[src]

impl<'de> Deserialize<'de> for Perquintill[src]

impl Div<Perquintill> for Perquintill[src]

type Output = Perquintill

The resulting type after applying the / operator.

impl Encode for Perquintill[src]

impl EncodeLike<Perquintill> for Perquintill[src]

impl Eq for Perquintill[src]

impl From<Compact<Perquintill>> for Perquintill[src]

impl<N> Mul<N> for Perquintill where
    N: Rem<N, Output = N> + Div<N, Output = N> + Clone + Mul<N, Output = N> + From<u64> + Add<N, Output = N> + UniqueSaturatedInto<u64> + Unsigned
[src]

Non-overflow multiplication.

This is tailored to be used with a balance type.

type Output = N

The resulting type after applying the * operator.

impl Ord for Perquintill[src]

impl PartialEq<Perquintill> for Perquintill[src]

impl PartialOrd<Perquintill> for Perquintill[src]

impl PerThing for Perquintill[src]

type Inner = u64

The data type used to build this per-thingy.

type Upper = u128

A data type larger than Self::Inner, used to avoid overflow in some computations. It must be able to compute ACCURACY^2. Read more

fn deconstruct(self) -> <Perquintill as PerThing>::Inner[src]

Consume self and return the number of parts per thing.

fn from_parts(parts: <Perquintill as PerThing>::Inner) -> Perquintill[src]

Build this type from a number of parts per thing.

fn from_fraction(x: f64) -> Perquintill[src]

NOTE: saturate to 0 or 1 if x is beyond [0, 1]

impl Saturating for Perquintill[src]

fn saturating_add(self, rhs: Perquintill) -> Perquintill[src]

Saturating addition. Compute self + rhs, saturating at the numeric bounds instead of overflowing. This operation is lossless if it does not saturate.

fn saturating_sub(self, rhs: Perquintill) -> Perquintill[src]

Saturating subtraction. Compute self - rhs, saturating at the numeric bounds instead of overflowing. This operation is lossless if it does not saturate.

fn saturating_mul(self, rhs: Perquintill) -> Perquintill[src]

Saturating multiply. Compute self * rhs, saturating at the numeric bounds instead of overflowing. This operation is lossy.

fn saturating_pow(self, exp: usize) -> Perquintill[src]

Saturating exponentiation. Computes self.pow(exp), saturating at the numeric bounds instead of overflowing. This operation is lossy.

impl Serialize for Perquintill[src]

impl StructuralEq for Perquintill[src]

impl StructuralPartialEq for Perquintill[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> CheckedConversion for T[src]

impl<T> Clear for T where
    T: PartialEq<T> + Eq + Default
[src]

impl<T> Clear for T where
    T: InitializableFromZeroed + ?Sized

impl<S> Codec for S where
    S: Encode + Decode
[src]

impl<T, X> Decode for X where
    T: Decode + Into<X>,
    X: WrapperTypeDecode<Wrapped = T>, 
[src]

impl<T> DecodeAll for T where
    T: Decode
[src]

impl<T> DecodeLimit for T where
    T: Decode
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T, X> Encode for X where
    T: Encode + ?Sized,
    X: WrapperTypeEncode<Target = T>, 
[src]

impl<'_, '_, T> EncodeLike<&'_ &'_ T> for T where
    T: Encode
[src]

impl<'_, T> EncodeLike<&'_ T> for T where
    T: Encode
[src]

impl<'_, T> EncodeLike<&'_ mut T> for T where
    T: Encode
[src]

impl<T> EncodeLike<Arc<T>> for T where
    T: Encode
[src]

impl<T> EncodeLike<Box<T>> for T where
    T: Encode
[src]

impl<'a, T> EncodeLike<Cow<'a, T>> for T where
    T: Encode + ToOwned
[src]

impl<T> EncodeLike<Rc<T>> for T where
    T: Encode
[src]

impl<T> From<T> for T[src]

impl<S> FullCodec for S where
    S: Decode + FullEncode
[src]

impl<S> FullEncode for S where
    S: Encode + EncodeLike<S>, 
[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>,
    Compact<T>: Clone,
    Compact<T>: PartialEq<Compact<T>>,
    Compact<T>: Eq,
    Compact<T>: MaybeDebugSerde, 
[src]

type Type = Compact<T>

The compact type; this can be

impl<T> InitializableFromZeroed for T where
    T: Default

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, Outer> IsWrappedBy<Outer> for T where
    Outer: AsRef<T> + AsMut<T> + From<T>,
    T: From<Outer>, 
[src]

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]

impl<T> MaybeDebug for T where
    T: Debug

impl<T> MaybeDebug for T where
    T: Debug

impl<T> MaybeRefUnwindSafe for T where
    T: RefUnwindSafe

impl<T> MaybeSerialize for T where
    T: Serialize
[src]

impl<T> MaybeSerializeDeserialize for T where
    T: DeserializeOwned + Serialize
[src]

impl<T> Member for T where
    T: 'static + Clone + PartialEq<T> + Eq + Send + Sync + Debug
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> SaturatedConversion for T[src]

impl<T> Saturating for T where
    T: Clone + PartialOrd<T> + Bounded + Zero + One + CheckedMul + Saturating
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<S, T> UncheckedInto<T> for S where
    T: UncheckedFrom<S>, 
[src]

impl<T, S> UniqueSaturatedFrom<T> for S where
    S: TryFrom<T> + Bounded
[src]

impl<T, S> UniqueSaturatedInto<T> for S where
    S: TryInto<T>,
    T: Bounded
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,