Struct sp_runtime::FixedI64

source ·
pub struct FixedI64(_);
Expand description

Re-export top-level arithmetic stuff. A fixed point number representation in the range. Fixed Point 64 bits signed, range = [-9223372036.854775808, 9223372036.854775807]

Implementations§

source§

impl FixedI64

source

pub const fn from_inner(inner: i64) -> FixedI64

Create a new instance from the given inner value.

const version of FixedPointNumber::from_inner.

source

pub const fn into_inner(self) -> i64

Return the instance’s inner value.

const version of FixedPointNumber::into_inner.

source

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

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) -> FixedI64

Convert from a float value.

source

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

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>(self) -> Result<P, P>where P: PerThing,

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>(self) -> Pwhere P: PerThing,

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) -> FixedI64

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) -> FixedI64

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

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

source

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

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: FixedI64) -> FixedI64

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: FixedI64) -> FixedI64

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: FixedI64) -> FixedI64

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) -> FixedI64

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 ) -> FixedI64

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: FixedI64) -> Option<FixedI64>

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: FixedI64, rounding: SignedRounding ) -> Option<FixedI64>

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: FixedI64) -> Option<FixedI64>

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: FixedI64, rounding: SignedRounding ) -> Option<FixedI64>

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<FixedI64> for FixedI64

§

type Output = FixedI64

The resulting type after applying the + operator.
source§

fn add(self, rhs: FixedI64) -> <FixedI64 as Add<FixedI64>>::Output

Performs the + operation. Read more
source§

impl Bounded for FixedI64

source§

fn min_value() -> FixedI64

Returns the smallest finite number this type can represent
source§

fn max_value() -> FixedI64

Returns the largest finite number this type can represent
source§

impl CheckedAdd for FixedI64

source§

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

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

impl CheckedDiv for FixedI64

source§

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

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

impl CheckedMul for FixedI64

source§

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

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

impl CheckedSub for FixedI64

source§

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

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

impl Clone for FixedI64

source§

fn clone(&self) -> FixedI64

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 FixedI64

§

type As = i64

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

fn encode_as(&self) -> &i64

Returns the compact-encodable type.
source§

fn decode_from(x: i64) -> Result<FixedI64, Error>

Decode Self from the compact-decoded type.
source§

impl Debug for FixedI64

source§

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

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

impl Decode for FixedI64

source§

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

Attempt to deserialise the value from input.
§

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
§

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

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

fn encoded_fixed_size() -> Option<usize>

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

impl Default for FixedI64

source§

fn default() -> FixedI64

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

impl<'de> Deserialize<'de> for FixedI64

source§

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

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

impl Display for FixedI64

source§

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

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

impl Div<FixedI64> for FixedI64

§

type Output = FixedI64

The resulting type after applying the / operator.
source§

fn div(self, rhs: FixedI64) -> <FixedI64 as Div<FixedI64>>::Output

Performs the / operation. Read more
source§

impl Encode for FixedI64

source§

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

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

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

Convert self to an owned vector.
source§

fn using_encoded<R, F>(&self, f: F) -> Rwhere F: FnOnce(&[u8]) -> R,

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

fn size_hint(&self) -> usize

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

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl FixedPointNumber for FixedI64

§

type Inner = i64

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

const DIV: <FixedI64 as FixedPointNumber>::Inner = {transmute(0x000000003b9aca00): <sp_arithmetic::FixedI64 as sp_arithmetic::FixedPointNumber>::Inner}

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

const SIGNED: bool = true

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

fn from_inner(inner: <FixedI64 as FixedPointNumber>::Inner) -> FixedI64

Builds this type from an integer number.
source§

fn into_inner(self) -> <FixedI64 as FixedPointNumber>::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>(int: N) -> Selfwhere N: FixedPointOperand,

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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, D> From<(N, D)> for FixedI64where N: FixedPointOperand, D: FixedPointOperand,

source§

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

Converts to this type from the input type.
source§

impl From<Compact<FixedI64>> for FixedI64

source§

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

Converts to this type from the input type.
source§

impl<P> From<P> for FixedI64where P: PerThing, <P as PerThing>::Inner: FixedPointOperand,

source§

fn from(p: P) -> FixedI64

Converts to this type from the input type.
source§

impl From<i64> for FixedI64

source§

fn from(int: i64) -> FixedI64

Converts to this type from the input type.
source§

impl FromStr for FixedI64

§

type Err = &'static str

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

fn from_str(s: &str) -> Result<FixedI64, <FixedI64 as FromStr>::Err>

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

impl MaxEncodedLen for FixedI64

source§

fn max_encoded_len() -> usize

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

impl Mul<FixedI64> for FixedI64

§

type Output = FixedI64

The resulting type after applying the * operator.
source§

fn mul(self, rhs: FixedI64) -> <FixedI64 as Mul<FixedI64>>::Output

Performs the * operation. Read more
source§

impl Neg for FixedI64

§

type Output = FixedI64

The resulting type after applying the - operator.
source§

fn neg(self) -> <FixedI64 as Neg>::Output

Performs the unary - operation. Read more
source§

impl One for FixedI64

source§

fn one() -> FixedI64

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) -> boolwhere Self: PartialEq<Self>,

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

impl Ord for FixedI64

source§

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

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

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

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

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

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

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

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

impl PartialEq<FixedI64> for FixedI64

source§

fn eq(&self, other: &FixedI64) -> 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<FixedI64> for FixedI64

source§

fn partial_cmp(&self, other: &FixedI64) -> 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 FixedI64

source§

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

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

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

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

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

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

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

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

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

Decrement self by one, saturating at zero.
source§

fn saturating_plus_one(self) -> Selfwhere 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 FixedI64

source§

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

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

impl Sub<FixedI64> for FixedI64

§

type Output = FixedI64

The resulting type after applying the - operator.
source§

fn sub(self, rhs: FixedI64) -> <FixedI64 as Sub<FixedI64>>::Output

Performs the - operation. Read more
source§

impl TypeInfo for FixedI64

§

type Identity = FixedI64

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

fn type_info() -> Type<MetaForm>

Returns the static type identifier for Self.
source§

impl Zero for FixedI64

source§

fn zero() -> FixedI64

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 FixedI64

source§

impl EncodeLike<FixedI64> for FixedI64

source§

impl Eq for FixedI64

source§

impl StructuralEq for FixedI64

source§

impl StructuralPartialEq for FixedI64

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> CheckedConversion for T

source§

fn checked_from<T>(t: T) -> Option<Self>where Self: TryFrom<T>,

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

fn checked_into<T>(self) -> Option<T>where Self: TryInto<T>,

Consume self to return Some equivalent value of Option<T>. Read more
source§

impl<T> Clear for Twhere T: Default + Eq + PartialEq<T>,

source§

fn is_clear(&self) -> bool

True iff no bits are set.
source§

fn clear() -> T

Return the value of Self that is clear.
§

impl<T> DecodeAll for Twhere T: Decode,

§

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

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

impl<T> DecodeLimit for Twhere T: Decode,

§

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
§

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> DynClone for Twhere T: Clone,

source§

fn __clone_box(&self, _: Private) -> *mut ()

source§

impl<T> EnsureAdd for Twhere 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 Twhere T: CheckedAdd + PartialOrd<T> + 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 Twhere 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 Twhere T: CheckedDiv + PartialOrd<T> + 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 Twhere T: FixedPointNumber,

source§

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

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

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

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

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

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

impl<T, S> EnsureFrom<S> for Twhere T: TryFrom<S> + PartialOrd<T> + Zero, S: PartialOrd<S> + 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 Twhere T: TryInto<S> + PartialOrd<T> + Zero, S: PartialOrd<S> + Zero,

source§

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

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

impl<T> EnsureMul for Twhere 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 Twhere T: CheckedMul + PartialOrd<T> + 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 Twhere 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 Twhere T: CheckedSub + PartialOrd<T> + 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<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

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

const: unstable · 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, Outer> IsWrappedBy<Outer> for Twhere Outer: AsRef<T> + AsMut<T> + From<T>, T: From<Outer>,

source§

fn from_ref(outer: &Outer) -> &T

Get a reference to the inner from the outer.

source§

fn from_mut(outer: &mut Outer) -> &mut T

Get a mutable reference to the inner from the outer.

§

impl<T> KeyedVec for Twhere T: Codec,

§

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

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

impl<T> LowerBounded for Twhere T: Bounded,

source§

fn min_value() -> T

Returns the smallest finite number this type can represent
§

impl<T> Pointable for T

§

const ALIGN: usize = mem::align_of::<T>()

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> SaturatedConversion for T

source§

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

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

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

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

impl<T> ThresholdOrd<T> for Twhere T: Ord + PartialOrd<T> + 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 Twhere 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 Twhere 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 Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

impl<S, T> UncheckedInto<T> for Swhere T: UncheckedFrom<S>,

source§

fn unchecked_into(self) -> T

The counterpart to unchecked_from.
source§

impl<T, S> UniqueSaturatedFrom<T> for Swhere 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 Swhere 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 Twhere T: Bounded,

source§

fn max_value() -> T

Returns the largest finite number this type can represent
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
§

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

source§

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

§

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

§

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

§

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

§

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

§

impl<T> EncodeLike<Box<T, Global>> for Twhere T: Encode,

§

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

§

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

source§

impl<T> Ensure for Twhere T: EnsureOp + EnsureOpAssign,

source§

impl<T> EnsureOp for Twhere T: EnsureAdd + EnsureSub + EnsureMul + EnsureDiv,

source§

impl<T> EnsureOpAssign for Twhere T: EnsureAddAssign + EnsureSubAssign + EnsureMulAssign + EnsureDivAssign,

source§

impl<T> Error for Twhere T: 'static + Debug + Display + Send + Sync,

§

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

§

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

§

impl<T> JsonSchemaMaybe for T

§

impl<T> MaybeDebug for Twhere T: Debug,

source§

impl<T> MaybeDisplay for Twhere T: Display,

source§

impl<T> MaybeFromStr for Twhere T: FromStr,

source§

impl<T> MaybeRefUnwindSafe for Twhere T: RefUnwindSafe,

source§

impl<T> MaybeSerialize for Twhere T: Serialize,

source§

impl<T> MaybeSerializeDeserialize for Twhere T: DeserializeOwned + Serialize,

source§

impl<T> Member for Twhere T: Send + Sync + Debug + Eq + PartialEq<T> + Clone + 'static,

§

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