[−][src]Struct sp_runtime::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. Implement const functions
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 a percent into Self
. Equal to x / 100
.
This can be created at compile time.
pub fn one() -> Permill
[src]
Everything.
To avoid having to import PerThing
when one needs to be used in test mocks.
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.
fn encode_as(&self) -> &u32
[src]
fn decode_from(x: u32) -> Permill
[src]
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]
fn deserialize<__D>(
__deserializer: __D
) -> Result<Permill, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
[src]
__deserializer: __D
) -> Result<Permill, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
impl Div<Permill> for Permill
[src]
type Output = Permill
The resulting type after applying the /
operator.
fn div(self, rhs: Permill) -> <Permill as Div<Permill>>::Output
[src]
impl Encode for Permill
[src]
fn encode_to<EncOut>(&self, dest: &mut EncOut) where
EncOut: Output,
[src]
EncOut: Output,
fn encode(&self) -> Vec<u8>
[src]
fn using_encoded<R, F>(&self, f: F) -> R where
F: FnOnce(&[u8]) -> R,
[src]
F: FnOnce(&[u8]) -> R,
fn size_hint(&self) -> usize
[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]
N: Rem<N, Output = N> + Div<N, Output = N> + Clone + Mul<N, Output = N> + From<u32> + Add<N, Output = N> + UniqueSaturatedInto<u32>,
Overflow-prune multiplication.
tailored to be used with a balance type.
type Output = N
The resulting type after applying the *
operator.
fn mul(self, b: N) -> <Permill as Mul<N>>::Output
[src]
impl Ord for Permill
[src]
fn cmp(&self, other: &Permill) -> Ordering
[src]
#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
[src]
impl PartialEq<Permill> for Permill
[src]
impl PartialOrd<Permill> for Permill
[src]
fn partial_cmp(&self, other: &Permill) -> Option<Ordering>
[src]
fn lt(&self, other: &Permill) -> bool
[src]
fn le(&self, other: &Permill) -> bool
[src]
fn gt(&self, other: &Permill) -> bool
[src]
fn ge(&self, other: &Permill) -> bool
[src]
impl PerThing for Permill
[src]
type Inner = u32
The data type used to build this per-thingy.
const ACCURACY: <Permill as PerThing>::Inner
[src]
The accuracy of this type.
fn zero() -> Permill
[src]
Nothing.
fn is_zero(&self) -> bool
[src]
true
if this is nothing.
fn one() -> Permill
[src]
Everything.
fn deconstruct(self) -> <Permill as PerThing>::Inner
[src]
Consume self and deconstruct into a raw numeric type.
fn from_parts(parts: <Permill as PerThing>::Inner) -> Permill
[src]
From an explicitly defined number of parts per maximum of the type.
fn from_percent(x: <Permill as PerThing>::Inner) -> Permill
[src]
Converts a percent into Self
. Equal to x / 100
.
fn square(self) -> Permill
[src]
Return the product of multiplication of this value by itself.
fn from_fraction(x: f64) -> Permill
[src]
Converts a fraction into Self
.
fn from_rational_approximation<N>(p: N, q: N) -> Permill where
N: Clone + Ord + From<<Permill as PerThing>::Inner> + TryInto<<Permill as PerThing>::Inner> + Div<N, Output = N>,
[src]
N: Clone + Ord + From<<Permill as PerThing>::Inner> + TryInto<<Permill as PerThing>::Inner> + Div<N, Output = N>,
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 Permill
[src]
fn saturating_add(self, rhs: Permill) -> Permill
[src]
fn saturating_sub(self, rhs: Permill) -> Permill
[src]
fn saturating_mul(self, rhs: Permill) -> Permill
[src]
impl Serialize for Permill
[src]
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
[src]
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> CheckedConversion for T
[src]
fn checked_from<T>(t: T) -> Option<Self> where
Self: TryFrom<T>,
[src]
Self: TryFrom<T>,
fn checked_into<T>(self) -> Option<T> where
Self: TryInto<T>,
[src]
Self: TryInto<T>,
impl<T> Clear for T where
T: PartialEq<T> + Eq + Default,
[src]
T: PartialEq<T> + Eq + Default,
impl<T> Clear for T where
T: InitializableFromZeroed + ?Sized,
T: InitializableFromZeroed + ?Sized,
fn clear(&mut self)
impl<S> Codec for S where
S: Encode + Decode,
[src]
S: Encode + Decode,
impl<T, X> Decode for X where
T: Decode + Into<X>,
X: WrapperTypeDecode<Wrapped = T>,
[src]
T: Decode + Into<X>,
X: WrapperTypeDecode<Wrapped = T>,
impl<T> DecodeAll for T where
T: Decode,
[src]
T: Decode,
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T, X> Encode for X where
T: Encode + ?Sized,
X: WrapperTypeEncode<Target = T>,
[src]
T: Encode + ?Sized,
X: WrapperTypeEncode<Target = T>,
fn size_hint(&self) -> usize
[src]
fn using_encoded<R, F>(&self, f: F) -> R where
F: FnOnce(&[u8]) -> R,
[src]
F: FnOnce(&[u8]) -> R,
fn encode(&self) -> Vec<u8>
[src]
fn encode_to<W>(&self, dest: &mut W) where
W: Output,
[src]
W: Output,
impl<'_, '_, T> EncodeLike<&'_ &'_ T> for T where
T: Encode,
[src]
T: Encode,
impl<'_, T> EncodeLike<&'_ T> for T where
T: Encode,
[src]
T: Encode,
impl<'_, T> EncodeLike<&'_ mut T> for T where
T: Encode,
[src]
T: Encode,
impl<T> EncodeLike<Arc<T>> for T where
T: Encode,
[src]
T: Encode,
impl<T> EncodeLike<Box<T>> for T where
T: Encode,
[src]
T: Encode,
impl<'a, T> EncodeLike<Cow<'a, T>> for T where
T: Encode + ToOwned,
[src]
T: Encode + ToOwned,
impl<T> EncodeLike<Rc<T>> for T where
T: Encode,
[src]
T: Encode,
impl<T> From<T> for T
[src]
impl<S> FullCodec for S where
S: Decode + FullEncode,
[src]
S: Decode + FullEncode,
impl<S> FullEncode for S where
S: Encode + EncodeLike<S>,
[src]
S: Encode + EncodeLike<S>,
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]
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,
impl<T> InitializableFromZeroed for T where
T: Default,
T: Default,
unsafe fn initialize(place: *mut T)
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, Outer> IsWrappedBy<Outer> for T where
Outer: AsRef<T> + AsMut<T> + From<T>,
T: From<Outer>,
[src]
Outer: AsRef<T> + AsMut<T> + From<T>,
T: From<Outer>,
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]
T: Codec,
impl<T> MaybeDebug for T where
T: Debug,
T: Debug,
impl<T> MaybeDebug for T where
T: Debug,
T: Debug,
impl<T> MaybeRefUnwindSafe for T where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> MaybeSerialize for T where
T: Serialize,
T: Serialize,
impl<T> MaybeSerializeDeserialize for T where
T: DeserializeOwned + Serialize,
T: DeserializeOwned + Serialize,
impl<T> Member for T where
T: 'static + Clone + PartialEq<T> + Eq + Send + Sync + Debug,
[src]
T: 'static + Clone + PartialEq<T> + Eq + Send + Sync + Debug,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> SaturatedConversion for T
[src]
fn saturated_from<T>(t: T) -> Self where
Self: UniqueSaturatedFrom<T>,
[src]
Self: UniqueSaturatedFrom<T>,
fn saturated_into<T>(self) -> T where
Self: UniqueSaturatedInto<T>,
[src]
Self: UniqueSaturatedInto<T>,
impl<T> Saturating for T where
T: Bounded + CheckedMul + Saturating,
[src]
T: Bounded + CheckedMul + Saturating,
fn saturating_add(self, o: T) -> T
[src]
fn saturating_sub(self, o: T) -> T
[src]
fn saturating_mul(self, o: T) -> T
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<S, T> UncheckedInto<T> for S where
T: UncheckedFrom<S>,
[src]
T: UncheckedFrom<S>,
fn unchecked_into(self) -> T
[src]
impl<T, S> UniqueSaturatedInto<T> for S where
S: TryInto<T>,
T: Bounded,
[src]
S: TryInto<T>,
T: Bounded,
fn unique_saturated_into(self) -> T
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,