[][src]Struct sp_arithmetic::Percent

pub struct Percent(_);

A fixed point representation of a number between in the range [0, 1].

Percent

Methods

impl Percent[src]

Implement const functions

pub const fn from_parts(parts: u8) -> Self[src]

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

This can be called at compile time.

pub const fn from_percent(x: u8) -> Self[src]

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

This can be created at compile time.

pub fn one() -> Self[src]

Everything.

To avoid having to import PerThing when one needs to be used in test mocks.

Trait Implementations

impl Clone for Percent[src]

impl CompactAs for Percent[src]

type As = u8

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

impl Copy for Percent[src]

impl Debug for Percent[src]

impl Decode for Percent[src]

impl Default for Percent[src]

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

impl Div<Percent> for Percent[src]

type Output = Self

The resulting type after applying the / operator.

impl Encode for Percent[src]

impl EncodeLike<Percent> for Percent[src]

impl Eq for Percent[src]

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

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

Overflow-prune multiplication.

tailored to be used with a balance type.

type Output = N

The resulting type after applying the * operator.

impl Ord for Percent[src]

impl PartialEq<Percent> for Percent[src]

impl PartialOrd<Percent> for Percent[src]

impl PerThing for Percent[src]

type Inner = u8

The data type used to build this per-thingy.

const ACCURACY: Self::Inner[src]

The accuracy of this type.

fn zero() -> Self[src]

Nothing.

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

true if this is nothing.

fn one() -> Self[src]

Everything.

fn deconstruct(self) -> Self::Inner[src]

Consume self and deconstruct into a raw numeric type.

fn from_parts(parts: Self::Inner) -> Self[src]

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

fn from_percent(x: Self::Inner) -> Self[src]

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

fn square(self) -> Self[src]

Return the product of multiplication of this value by itself.

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

Converts a fraction into Self.

fn from_rational_approximation<N>(p: N, q: N) -> Self where
    N: Clone + Ord + From<Self::Inner> + TryInto<Self::Inner> + Div<N, Output = N>, 
[src]

Approximate the fraction p/q into a per-thing fraction. This will never overflow.

The computation of this approximation is performed in the generic type N. Given M as the data type that can hold the maximum value of this per-thing (e.g. u32 for perbill), this can only work if N == M or N: From<M> + TryInto<M>.

impl Saturating for Percent[src]

impl Serialize for Percent[src]

impl StructuralEq for Percent[src]

impl StructuralPartialEq for Percent[src]

Auto Trait Implementations

impl RefUnwindSafe for Percent

impl Send for Percent

impl Sync for Percent

impl Unpin for Percent

impl UnwindSafe for Percent

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<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> DeserializeOwned for T where
    T: 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>: 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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> KeyedVec for T where
    T: Codec
[src]

impl<T> SaturatedConversion for T[src]

impl<T> Saturating for T where
    T: Bounded + 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<T, S> UniqueSaturatedInto<T> for S where
    S: TryInto<T>,
    T: Bounded
[src]