[][src]Struct sp_runtime::Permill

pub struct Permill(_);

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

Parts per Million

Methods

impl Permill[src]

Re-export top-level arithmetic stuff.

pub fn zero() -> Permill[src]

Nothing.

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

true if this is nothing.

pub fn one() -> Permill[src]

Everything.

pub fn deconstruct(self) -> u32[src]

Consume self and deconstruct into a raw numeric type.

pub const fn accuracy() -> u32[src]

Return the scale at which this per-thing is working.

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

Converts from a percent. Equal to x / 100.

This can be created at compile time.

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

Return the product of multiplication of this value by itself.

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

Converts a fraction into Permill.

pub fn from_rational_approximation<N>(p: N, q: N) -> Permill where
    N: Clone + Ord + From<u32> + TryInto<u32> + 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>.

Trait Implementations

impl Clone for Permill[src]

impl CompactAs for Permill[src]

type As = u32

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

impl Copy for Permill[src]

impl Debug for Permill[src]

impl Decode for Permill[src]

impl Default for Permill[src]

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

impl Div<Permill> for Permill[src]

type Output = Permill

The resulting type after applying the / operator.

impl Encode for Permill[src]

impl EncodeLike<Permill> for Permill[src]

impl Eq for Permill[src]

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

impl<N> Mul<N> for Permill where
    N: Rem<N, Output = N> + Div<N, Output = N> + Clone + Mul<N, Output = N> + From<u32> + Add<N, Output = N> + UniqueSaturatedInto<u32>, 
[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 Permill[src]

impl PartialEq<Permill> for Permill[src]

impl PartialOrd<Permill> for Permill[src]

impl Saturating for Permill[src]

impl Serialize for Permill[src]

impl StructuralEq for Permill[src]

impl StructuralPartialEq for Permill[src]

Auto Trait Implementations

impl RefUnwindSafe for Permill

impl Send for Permill

impl Sync for Permill

impl Unpin for Permill

impl UnwindSafe for Permill

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
[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> InitializableFromZeroed for T where
    T: Default
[src]

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
[src]

impl<T> MaybeDebug for T where
    T: Debug
[src]

impl<T> MaybeDebug for T where
    T: Debug
[src]

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[src]

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>, 
[src]