Struct sp_runtime::FixedI64[][src]

pub struct FixedI64(_);

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

impl FixedI64[src]

Re-export top-level arithmetic stuff.

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

const version of FixedPointNumber::from_inner.

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

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

Trait Implementations

impl Add<FixedI64> for FixedI64[src]

type Output = FixedI64

The resulting type after applying the + operator.

impl Bounded for FixedI64[src]

impl CheckedAdd for FixedI64[src]

impl CheckedDiv for FixedI64[src]

impl CheckedMul for FixedI64[src]

impl CheckedSub for FixedI64[src]

impl Clone for FixedI64[src]

impl CompactAs for FixedI64[src]

type As = i64

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

impl Copy for FixedI64[src]

impl Debug for FixedI64[src]

impl Decode for FixedI64[src]

impl Default for FixedI64[src]

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

impl Display for FixedI64[src]

impl Div<FixedI64> for FixedI64[src]

type Output = FixedI64

The resulting type after applying the / operator.

impl Encode for FixedI64[src]

impl EncodeLike<FixedI64> for FixedI64[src]

impl Eq for FixedI64[src]

impl FixedPointNumber for FixedI64[src]

type Inner = i64

The underlying data type used for this fixed point number.

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

impl From<Compact<FixedI64>> for FixedI64[src]

impl<P> From<P> for FixedI64 where
    P: PerThing,
    <P as PerThing>::Inner: FixedPointOperand
[src]

impl From<i64> for FixedI64[src]

impl FromStr for FixedI64[src]

type Err = &'static str

The associated error which can be returned from parsing.

impl Mul<FixedI64> for FixedI64[src]

type Output = FixedI64

The resulting type after applying the * operator.

impl Neg for FixedI64[src]

type Output = FixedI64

The resulting type after applying the - operator.

impl Ord for FixedI64[src]

impl PartialEq<FixedI64> for FixedI64[src]

impl PartialOrd<FixedI64> for FixedI64[src]

impl Saturating for FixedI64[src]

impl Serialize for FixedI64[src]

impl StructuralEq for FixedI64[src]

impl StructuralPartialEq for FixedI64[src]

impl Sub<FixedI64> for FixedI64[src]

type Output = FixedI64

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<T> CheckedConversion for T[src]

impl<T> Clear for T where
    T: PartialEq<T> + Eq + Default
[src]

impl<S> Codec for S where
    S: Encode + Decode
[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> DynClone for T where
    T: Clone
[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, Global>> 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> Error for T where
    T: 'static + Send + Sync + Debug + Display

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> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, Outer> IsWrappedBy<Outer> for T where
    T: From<Outer>,
    Outer: AsRef<T> + AsMut<T> + From<T>, 
[src]

pub fn from_ref(outer: &Outer) -> &T[src]

Get a reference to the inner from the outer.

pub 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]

impl<T> MaybeDebug for T where
    T: Debug

impl<T> MaybeDebug for T where
    T: Debug

impl<T> MaybeDisplay for T where
    T: Display
[src]

impl<T> MaybeFromStr for T where
    T: FromStr
[src]

impl<T> MaybeRefUnwindSafe for T where
    T: RefUnwindSafe

impl<T> MaybeSerialize for T where
    T: Serialize
[src]

impl<T> MaybeSerializeDeserialize for T where
    T: DeserializeOwned + Serialize
[src]

impl<T> Member for T where
    T: 'static + Clone + PartialEq<T> + Eq + Send + Sync + Debug
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> SaturatedConversion for T[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<S, T> UncheckedInto<T> for S where
    T: UncheckedFrom<S>, 
[src]

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

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

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