[][src]Struct sp_runtime::Percent

pub struct Percent(_);

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

Percent

Methods

impl Percent[src]

Re-export top-level arithmetic stuff. Implement const functions

pub const fn from_parts(parts: u8) -> Percent[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) -> Percent[src]

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

This can be created at compile time.

pub fn one() -> Percent[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 = Percent

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: Rem<N, Output = N> + Div<N, Output = N> + Clone + Mul<N, Output = N> + From<u8> + Add<N, Output = N> + UniqueSaturatedInto<u8>, 
[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: <Percent as PerThing>::Inner[src]

The accuracy of this type.

fn zero() -> Percent[src]

Nothing.

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

true if this is nothing.

fn one() -> Percent[src]

Everything.

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

Consume self and deconstruct into a raw numeric type.

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

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

fn from_percent(x: <Percent as PerThing>::Inner) -> Percent[src]

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

fn square(self) -> Percent[src]

Return the product of multiplication of this value by itself.

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

Converts a fraction into Self.

fn from_rational_approximation<N>(p: N, q: N) -> Percent where
    N: Clone + Ord + From<<Percent as PerThing>::Inner> + TryInto<<Percent as PerThing>::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<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> 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> 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

impl<T> MaybeSerializeDeserialize for T where
    T: DeserializeOwned + Serialize

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: 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<S, T> UncheckedInto<T> for S where
    T: UncheckedFrom<S>, 
[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>,