[][src]Struct sp_arithmetic::FixedI128

pub struct FixedI128(_);

A fixed point number representation in the range.

Fixed Point 128 bits signed, range = [-170141183460469231731.687303715884105728, 170141183460469231731.687303715884105727]

Implementations

impl FixedI128[src]

pub const fn from_inner(inner: i128) -> Self[src]

const version of FixedPointNumber::from_inner.

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

pub fn to_fraction(self) -> f64[src]

Trait Implementations

impl Add<FixedI128> for FixedI128[src]

type Output = Self

The resulting type after applying the + operator.

impl Bounded for FixedI128[src]

impl CheckedAdd for FixedI128[src]

impl CheckedDiv for FixedI128[src]

impl CheckedMul for FixedI128[src]

impl CheckedSub for FixedI128[src]

impl Clone for FixedI128[src]

impl Copy for FixedI128[src]

impl Debug for FixedI128[src]

impl Decode for FixedI128[src]

impl Default for FixedI128[src]

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

impl Display for FixedI128[src]

impl Div<FixedI128> for FixedI128[src]

type Output = Self

The resulting type after applying the / operator.

impl Encode for FixedI128[src]

impl EncodeLike<FixedI128> for FixedI128[src]

impl Eq for FixedI128[src]

impl FixedPointNumber for FixedI128[src]

type Inner = i128

The underlying data type used for this fixed point number.

impl<N: FixedPointOperand, D: FixedPointOperand> From<(N, D)> for FixedI128[src]

impl<P: PerThing> From<P> for FixedI128[src]

impl From<i128> for FixedI128[src]

impl FromStr for FixedI128[src]

type Err = &'static str

The associated error which can be returned from parsing.

impl Mul<FixedI128> for FixedI128[src]

type Output = Self

The resulting type after applying the * operator.

impl Neg for FixedI128[src]

type Output = Self

The resulting type after applying the - operator.

impl Ord for FixedI128[src]

impl PartialEq<FixedI128> for FixedI128[src]

impl PartialOrd<FixedI128> for FixedI128[src]

impl Saturating for FixedI128[src]

impl Serialize for FixedI128[src]

impl StructuralEq for FixedI128[src]

impl StructuralPartialEq for FixedI128[src]

impl Sub<FixedI128> for FixedI128[src]

type Output = Self

The resulting type after applying the - operator.

Auto Trait Implementations

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> DecodeLimit 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, 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> ToString for T where
    T: Display + ?Sized
[src]

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]