pub struct FixedU128(/* private fields */);
Expand description

A fixed point number representation in the range. Fixed Point 128 bits unsigned, range = [0.000000000000000000, 340282366920938463463.374607431768211455]

Implementations§

source§

impl FixedU128

source

pub const fn from_inner(inner: u128) -> Self

Create a new instance from the given inner value.

const version of FixedPointNumber::from_inner.

source

pub const fn into_inner(self) -> u128

Return the instance’s inner value.

const version of FixedPointNumber::into_inner.

source

pub const fn from_u32(n: u32) -> Self

Creates self from a u32.

WARNING: This is a const function designed for convenient use at build time and will panic on overflow. Ensure that any inputs are sensible.

source

pub fn from_float(x: f64) -> Self

Convert from a float value.

source

pub const fn from_perbill(n: Perbill) -> Self

Convert from a Perbill value.

source

pub const fn into_perbill(self) -> Perbill

Convert into a Perbill value. Will saturate if above one or below zero.

source

pub fn to_float(self) -> f64

Convert into a float value.

source

pub fn try_into_perthing<P: PerThing>(self) -> Result<P, P>

Attempt to convert into a PerThing. This will succeed iff self is at least zero and at most one. If it is out of bounds, it will result in an error returning the clamped value.

source

pub fn into_clamped_perthing<P: PerThing>(self) -> P

Attempt to convert into a PerThing. This will always succeed resulting in a clamped value if self is less than zero or greater than one.

source

pub const fn neg(self) -> Self

Negate the value.

WARNING: This is a const function designed for convenient use at build time and will panic on overflow. Ensure that any inputs are sensible.

source

pub const fn sqrt(self) -> Self

Take the square root of a positive value.

WARNING: This is a const function designed for convenient use at build time and will panic on overflow. Ensure that any inputs are sensible.

source

pub const fn try_sqrt(self) -> Option<Self>

Compute the square root, rounding as desired. If it overflows or is negative, then None is returned.

source

pub const fn add(self, rhs: Self) -> Self

Add a value and return the result.

WARNING: This is a const function designed for convenient use at build time and will panic on overflow. Ensure that any inputs are sensible.

source

pub const fn sub(self, rhs: Self) -> Self

Subtract a value and return the result.

WARNING: This is a const function designed for convenient use at build time and will panic on overflow. Ensure that any inputs are sensible.

source

pub const fn mul(self, rhs: Self) -> Self

Multiply by a value and return the result.

Result will be rounded to the nearest representable value, rounding down if it is equidistant between two neighbours.

WARNING: This is a const function designed for convenient use at build time and will panic on overflow. Ensure that any inputs are sensible.

source

pub const fn div(self, rhs: Self) -> Self

Divide by a value and return the result.

Result will be rounded to the nearest representable value, rounding down if it is equidistant between two neighbours.

WARNING: This is a const function designed for convenient use at build time and will panic on overflow. Ensure that any inputs are sensible.

source

pub const fn from_rational(a: u128, b: u128) -> Self

Calculate an approximation of a rational.

Result will be rounded to the nearest representable value, rounding down if it is equidistant between two neighbours.

WARNING: This is a const function designed for convenient use at build time and will panic on overflow. Ensure that any inputs are sensible.

source

pub const fn from_rational_with_rounding( a: u128, b: u128, rounding: Rounding ) -> Self

Calculate an approximation of a rational with custom rounding.

WARNING: This is a const function designed for convenient use at build time and will panic on overflow. Ensure that any inputs are sensible.

source

pub const fn const_checked_mul(self, other: Self) -> Option<Self>

Multiply by another value, returning None in the case of an error.

Result will be rounded to the nearest representable value, rounding down if it is equidistant between two neighbours.

source

pub const fn const_checked_mul_with_rounding( self, other: Self, rounding: SignedRounding ) -> Option<Self>

Multiply by another value with custom rounding, returning None in the case of an error.

Result will be rounded to the nearest representable value, rounding down if it is equidistant between two neighbours.

source

pub const fn const_checked_div(self, other: Self) -> Option<Self>

Divide by another value, returning None in the case of an error.

Result will be rounded to the nearest representable value, rounding down if it is equidistant between two neighbours.

source

pub const fn checked_rounding_div( self, other: Self, rounding: SignedRounding ) -> Option<Self>

Divide by another value with custom rounding, returning None in the case of an error.

Result will be rounded to the nearest representable value, rounding down if it is equidistant between two neighbours.

Trait Implementations§

source§

impl Add for FixedU128

§

type Output = FixedU128

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl Bounded for FixedU128

source§

fn min_value() -> Self

Returns the smallest finite number this type can represent
source§

fn max_value() -> Self

Returns the largest finite number this type can represent
source§

impl CheckedAdd for FixedU128

source§

fn checked_add(&self, rhs: &Self) -> Option<Self>

Adds two numbers, checking for overflow. If overflow happens, None is returned.
source§

impl CheckedDiv for FixedU128

source§

fn checked_div(&self, other: &Self) -> Option<Self>

Divides two numbers, checking for underflow, overflow and division by zero. If any of that happens, None is returned.
source§

impl CheckedMul for FixedU128

source§

fn checked_mul(&self, other: &Self) -> Option<Self>

Multiplies two numbers, checking for underflow or overflow. If underflow or overflow happens, None is returned.
source§

impl CheckedSub for FixedU128

source§

fn checked_sub(&self, rhs: &Self) -> Option<Self>

Subtracts two numbers, checking for underflow. If underflow happens, None is returned.
source§

impl Clone for FixedU128

source§

fn clone(&self) -> FixedU128

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl CompactAs for FixedU128

§

type As = u128

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

fn encode_as(&self) -> &u128

Returns the compact-encodable type.
source§

fn decode_from(x: u128) -> Result<FixedU128, Error>

Decode Self from the compact-decoded type.
source§

impl Debug for FixedU128

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Decode for FixedU128

source§

fn decode<__CodecInputEdqy: Input>( __codec_input_edqy: &mut __CodecInputEdqy ) -> Result<Self, Error>

Attempt to deserialise the value from input.
source§

fn decode_into<I>( input: &mut I, dst: &mut MaybeUninit<Self> ) -> Result<DecodeFinished, Error>
where I: Input,

Attempt to deserialize the value from input into a pre-allocated piece of memory. Read more
source§

fn skip<I>(input: &mut I) -> Result<(), Error>
where I: Input,

Attempt to skip the encoded value from input. Read more
source§

fn encoded_fixed_size() -> Option<usize>

Returns the fixed encoded size of the type. Read more
source§

impl Default for FixedU128

source§

fn default() -> FixedU128

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for FixedU128

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Display for FixedU128

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Div for FixedU128

§

type Output = FixedU128

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self::Output

Performs the / operation. Read more
source§

impl Encode for FixedU128

source§

fn size_hint(&self) -> usize

If possible give a hint of expected size of the encoding. Read more
source§

fn encode_to<__CodecOutputEdqy: Output + ?Sized>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )

Convert self to a slice and append it to the destination.
source§

fn encode(&self) -> Vec<u8>

Convert self to an owned vector.
source§

fn using_encoded<__CodecOutputReturn, __CodecUsingEncodedCallback: FnOnce(&[u8]) -> __CodecOutputReturn>( &self, f: __CodecUsingEncodedCallback ) -> __CodecOutputReturn

Convert self to a slice and then invoke the given closure with it.
source§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl FixedPointNumber for FixedU128

§

type Inner = u128

The underlying data type used for this fixed point number.
source§

const DIV: Self::Inner = {transmute(0x00000000000000000de0b6b3a7640000): <fixed_point::FixedU128 as fixed_point::FixedPointNumber>::Inner}

Precision of this fixed point implementation. It should be a power of 10.
source§

const SIGNED: bool = false

Indicates if this fixed point implementation is signed or not.
source§

fn from_inner(inner: Self::Inner) -> Self

Builds this type from an integer number.
source§

fn into_inner(self) -> Self::Inner

Consumes self and returns the inner raw value.
source§

fn accuracy() -> Self::Inner

Precision of this fixed point implementation.
source§

fn saturating_from_integer<N: FixedPointOperand>(int: N) -> Self

Creates self from an integer number int. Read more
source§

fn checked_from_integer<N: Into<Self::Inner>>(int: N) -> Option<Self>

Creates self from an integer number int. Read more
source§

fn saturating_from_rational<N: FixedPointOperand, D: FixedPointOperand>( n: N, d: D ) -> Self

Creates self from a rational number. Equal to n / d. Read more
source§

fn checked_from_rational<N: FixedPointOperand, D: FixedPointOperand>( n: N, d: D ) -> Option<Self>

Creates self from a rational number. Equal to n / d. Read more
source§

fn checked_mul_int<N: FixedPointOperand>(self, n: N) -> Option<N>

Checked multiplication for integer type N. Equal to self * n. Read more
source§

fn saturating_mul_int<N: FixedPointOperand>(self, n: N) -> N

Saturating multiplication for integer type N. Equal to self * n. Read more
source§

fn checked_div_int<N: FixedPointOperand>(self, d: N) -> Option<N>

Checked division for integer type N. Equal to self / d. Read more
source§

fn saturating_div_int<N: FixedPointOperand>(self, d: N) -> N

Saturating division for integer type N. Equal to self / d. Read more
source§

fn saturating_mul_acc_int<N: FixedPointOperand>(self, n: N) -> N

Saturating multiplication for integer type N, adding the result back. Equal to self * n + n. Read more
source§

fn saturating_abs(self) -> Self

Saturating absolute value. Read more
source§

fn reciprocal(self) -> Option<Self>

Takes the reciprocal (inverse). Equal to 1 / self. Read more
source§

fn is_one(&self) -> bool

Checks if the number is one.
source§

fn is_positive(self) -> bool

Returns true if self is positive and false if the number is zero or negative.
source§

fn is_negative(self) -> bool

Returns true if self is negative and false if the number is zero or positive.
source§

fn trunc(self) -> Self

Returns the integer part.
source§

fn frac(self) -> Self

Returns the fractional part. Read more
source§

fn ceil(self) -> Self

Returns the smallest integer greater than or equal to a number. Read more
source§

fn floor(self) -> Self

Returns the largest integer less than or equal to a number. Read more
source§

fn round(self) -> Self

Returns the number rounded to the nearest integer. Rounds half-way cases away from 0.0. Read more
source§

impl<N: FixedPointOperand, D: FixedPointOperand> From<(N, D)> for FixedU128

source§

fn from(r: (N, D)) -> Self

Converts to this type from the input type.
source§

impl From<Compact<FixedU128>> for FixedU128

source§

fn from(x: Compact<FixedU128>) -> FixedU128

Converts to this type from the input type.
source§

impl<P: PerThing> From<P> for FixedU128

source§

fn from(p: P) -> Self

Converts to this type from the input type.
source§

impl From<u128> for FixedU128

source§

fn from(int: u128) -> Self

Converts to this type from the input type.
source§

impl FromStr for FixedU128

§

type Err = &'static str

The associated error which can be returned from parsing.
source§

fn from_str(s: &str) -> Result<Self, Self::Err>

Parses a string s to return a value of this type. Read more
source§

impl MaxEncodedLen for FixedU128

source§

fn max_encoded_len() -> usize

Upper bound, in bytes, of the maximum encoded size of this item.
source§

impl Mul for FixedU128

§

type Output = FixedU128

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self::Output

Performs the * operation. Read more
source§

impl Neg for FixedU128

§

type Output = FixedU128

The resulting type after applying the - operator.
source§

fn neg(self) -> Self::Output

Performs the unary - operation. Read more
source§

impl One for FixedU128

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> bool
where Self: PartialEq,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl Ord for FixedU128

source§

fn cmp(&self, other: &FixedU128) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl PartialEq for FixedU128

source§

fn eq(&self, other: &FixedU128) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd for FixedU128

source§

fn partial_cmp(&self, other: &FixedU128) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Saturating for FixedU128

source§

fn saturating_add(self, rhs: Self) -> Self

Saturating addition. Compute self + rhs, saturating at the numeric bounds instead of overflowing.
source§

fn saturating_sub(self, rhs: Self) -> Self

Saturating subtraction. Compute self - rhs, saturating at the numeric bounds instead of overflowing.
source§

fn saturating_mul(self, rhs: Self) -> Self

Saturating multiply. Compute self * rhs, saturating at the numeric bounds instead of overflowing.
source§

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

Saturating exponentiation. Compute self.pow(exp), saturating at the numeric bounds instead of overflowing.
source§

fn saturating_less_one(self) -> Self
where Self: One,

Decrement self by one, saturating at zero.
source§

fn saturating_plus_one(self) -> Self
where Self: One,

Increment self by one, saturating at the numeric bounds instead of overflowing.
source§

fn saturating_inc(&mut self)
where Self: One,

Increment self by one, saturating.
source§

fn saturating_dec(&mut self)
where Self: One,

Decrement self by one, saturating at zero.
source§

fn saturating_accrue(&mut self, amount: Self)
where Self: One,

Increment self by some amount, saturating.
source§

fn saturating_reduce(&mut self, amount: Self)
where Self: One,

Decrement self by some amount, saturating at zero.
source§

impl Serialize for FixedU128

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Sub for FixedU128

§

type Output = FixedU128

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self::Output

Performs the - operation. Read more
source§

impl TypeInfo for FixedU128

§

type Identity = FixedU128

The type identifying for which type info is provided. Read more
source§

fn type_info() -> Type

Returns the static type identifier for Self.
source§

impl Zero for FixedU128

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Copy for FixedU128

source§

impl EncodeLike for FixedU128

source§

impl Eq for FixedU128

source§

impl StructuralPartialEq for FixedU128

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DecodeAll for T
where T: Decode,

source§

fn decode_all(input: &mut &[u8]) -> Result<T, Error>

Decode Self and consume all of the given input data. Read more
source§

impl<T> DecodeLimit for T
where T: Decode,

source§

fn decode_all_with_depth_limit( limit: u32, input: &mut &[u8] ) -> Result<T, Error>

Decode Self and consume all of the given input data. Read more
source§

fn decode_with_depth_limit<I>(limit: u32, input: &mut I) -> Result<T, Error>
where I: Input,

Decode Self with the given maximum recursion depth and advance input by the number of bytes consumed. Read more
source§

impl<T> EnsureAdd for T
where T: EnsureAddAssign,

source§

fn ensure_add(self, v: Self) -> Result<Self, ArithmeticError>

Adds two numbers, checking for overflow. Read more
source§

impl<T> EnsureAddAssign for T
where T: CheckedAdd + PartialOrd + Zero,

source§

fn ensure_add_assign(&mut self, v: Self) -> Result<(), ArithmeticError>

Adds two numbers overwriting the left hand one, checking for overflow. Read more
source§

impl<T> EnsureDiv for T
where T: EnsureDivAssign,

source§

fn ensure_div(self, v: Self) -> Result<Self, ArithmeticError>

Divides two numbers, checking for overflow. Read more
source§

impl<T> EnsureDivAssign for T
where T: CheckedDiv + PartialOrd + Zero,

source§

fn ensure_div_assign(&mut self, v: Self) -> Result<(), ArithmeticError>

Divides two numbers overwriting the left hand one, checking for overflow. Read more
source§

impl<T> EnsureFixedPointNumber for T

source§

fn ensure_from_rational<N: FixedPointOperand, D: FixedPointOperand>( n: N, d: D ) -> Result<Self, ArithmeticError>

Creates self from a rational number. Equal to n / d. Read more
source§

fn ensure_mul_int<N: FixedPointOperand>( self, n: N ) -> Result<N, ArithmeticError>

Ensure multiplication for integer type N. Equal to self * n. Read more
source§

fn ensure_div_int<D: FixedPointOperand>( self, d: D ) -> Result<D, ArithmeticError>

Ensure division for integer type N. Equal to self / d. Read more
source§

impl<T, S> EnsureFrom<S> for T
where T: TryFrom<S> + PartialOrd + Zero, S: PartialOrd + Zero,

source§

fn ensure_from(other: T) -> Result<Self, ArithmeticError>

Performs the conversion returning an ArithmeticError if fails. Read more
source§

impl<T, S> EnsureInto<S> for T
where T: TryInto<S> + PartialOrd + Zero, S: PartialOrd + Zero,

source§

fn ensure_into(self) -> Result<T, ArithmeticError>

Performs the conversion returning an ArithmeticError if fails. Read more
source§

impl<T> EnsureMul for T
where T: EnsureMulAssign,

source§

fn ensure_mul(self, v: Self) -> Result<Self, ArithmeticError>

Multiplies two numbers, checking for overflow. Read more
source§

impl<T> EnsureMulAssign for T
where T: CheckedMul + PartialOrd + Zero,

source§

fn ensure_mul_assign(&mut self, v: Self) -> Result<(), ArithmeticError>

Multiplies two numbers overwriting the left hand one, checking for overflow. Read more
source§

impl<T> EnsureSub for T
where T: EnsureSubAssign,

source§

fn ensure_sub(self, v: Self) -> Result<Self, ArithmeticError>

Subtracts two numbers, checking for overflow. Read more
source§

impl<T> EnsureSubAssign for T
where T: CheckedSub + PartialOrd + Zero,

source§

fn ensure_sub_assign(&mut self, v: Self) -> Result<(), ArithmeticError>

Subtracts two numbers overwriting the left hand one, checking for overflow. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> HasCompact for T
where T: 'static, Compact<T>: for<'a> EncodeAsRef<'a, T> + Decode + From<T> + Into<T>,

§

type Type = Compact<T>

The compact type; this can be
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> KeyedVec for T
where T: Codec,

source§

fn to_keyed_vec(&self, prepend_key: &[u8]) -> Vec<u8>

Return an encoding of Self prepended by given slice.
source§

impl<T> LowerBounded for T
where T: Bounded,

source§

fn min_value() -> T

Returns the smallest finite number this type can represent
source§

impl<T> SaturatedConversion for T

source§

fn saturated_from<T>(t: T) -> Self
where Self: UniqueSaturatedFrom<T>,

Convert from a value of T into an equivalent instance of Self. Read more
source§

fn saturated_into<T>(self) -> T
where Self: UniqueSaturatedInto<T>,

Consume self to return an equivalent value of T. Read more
source§

impl<T> ThresholdOrd<T> for T
where T: Ord + PartialOrd + Copy + Clone + Zero + Saturating,

source§

fn tcmp(&self, other: &T, threshold: T) -> Ordering

Compare if self is threshold greater or less than other.
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T, S> UniqueSaturatedFrom<T> for S
where S: TryFrom<T> + Bounded,

source§

fn unique_saturated_from(t: T) -> S

Convert from a value of T into an equivalent instance of Self.
source§

impl<T, S> UniqueSaturatedInto<T> for S
where T: Bounded, S: TryInto<T>,

source§

fn unique_saturated_into(self) -> T

Consume self to return an equivalent value of T.
source§

impl<T> UpperBounded for T
where T: Bounded,

source§

fn max_value() -> T

Returns the largest finite number this type can represent
source§

impl<S> Codec for S
where S: Decode + Encode,

source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

source§

impl<T> EncodeLike<&&T> for T
where T: Encode,

source§

impl<T> EncodeLike<&T> for T
where T: Encode,

source§

impl<T> EncodeLike<&mut T> for T
where T: Encode,

source§

impl<T> EncodeLike<Arc<T>> for T
where T: Encode,

source§

impl<T> EncodeLike<Box<T>> for T
where T: Encode,

source§

impl<'a, T> EncodeLike<Cow<'a, T>> for T
where T: ToOwned + Encode,

source§

impl<T> EncodeLike<Rc<T>> for T
where T: Encode,

source§

impl<T> Ensure for T

source§

impl<T> EnsureOp for T

source§

impl<T> EnsureOpAssign for T

source§

impl<S> FullCodec for S
where S: Decode + FullEncode,

source§

impl<S> FullEncode for S
where S: Encode + EncodeLike,

source§

impl<T> JsonSchemaMaybe for T

source§

impl<T> StaticTypeInfo for T
where T: TypeInfo + 'static,