[][src]Struct sp_arithmetic::Percent

pub struct Percent(_);

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

Percent

Implementations

impl Percent[src]

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]

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

pub fn zero() -> Self[src]

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

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

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

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

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

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

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

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

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

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

Trait Implementations

impl Bounded for Percent[src]

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]

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 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.

type Upper = u16

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) -> Self::Inner[src]

Consume self and return the number of parts per thing.

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

Build this type from a number of parts per thing.

impl Saturating for Percent[src]

fn saturating_add(self, rhs: Self) -> Self[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: Self) -> Self[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: Self) -> Self[src]

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

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

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

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: 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, 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: 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<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>,