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]
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 CheckedAdd for FixedI64
[src]
impl CheckedAdd for FixedI64
[src]pub fn checked_add(&self, rhs: &FixedI64) -> Option<FixedI64>
[src]
impl CheckedDiv for FixedI64
[src]
impl CheckedDiv for FixedI64
[src]pub fn checked_div(&self, other: &FixedI64) -> Option<FixedI64>
[src]
impl CheckedMul for FixedI64
[src]
impl CheckedMul for FixedI64
[src]pub fn checked_mul(&self, other: &FixedI64) -> Option<FixedI64>
[src]
impl CheckedSub for FixedI64
[src]
impl CheckedSub for FixedI64
[src]pub fn checked_sub(&self, rhs: &FixedI64) -> Option<FixedI64>
[src]
impl<'de> Deserialize<'de> for FixedI64
[src]
impl<'de> Deserialize<'de> for FixedI64
[src]pub fn deserialize<D>(
deserializer: D
) -> Result<FixedI64, <D as Deserializer<'de>>::Error> where
D: Deserializer<'de>,
[src]
deserializer: D
) -> Result<FixedI64, <D as Deserializer<'de>>::Error> where
D: Deserializer<'de>,
impl Encode for FixedI64
[src]
impl Encode for FixedI64
[src]pub fn encode_to<__CodecOutputEdqy>(
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy
) where
__CodecOutputEdqy: Output + ?Sized,
[src]
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy
) where
__CodecOutputEdqy: Output + ?Sized,
pub fn encode(&self) -> Vec<u8, Global>
[src]
pub fn using_encoded<R, F>(&self, f: F) -> R where
F: FnOnce(&[u8]) -> R,
[src]
F: FnOnce(&[u8]) -> R,
pub fn size_hint(&self) -> usize
[src]
pub fn encoded_size(&self) -> usize
[src]
impl FixedPointNumber for FixedI64
[src]
impl FixedPointNumber for FixedI64
[src]type Inner = i64
The underlying data type used for this fixed point number.
pub const DIV: <FixedI64 as FixedPointNumber>::Inner
[src]
pub const SIGNED: bool
[src]
pub fn from_inner(inner: <FixedI64 as FixedPointNumber>::Inner) -> FixedI64
[src]
pub fn into_inner(self) -> <FixedI64 as FixedPointNumber>::Inner
[src]
pub fn accuracy() -> Self::Inner
[src]
pub fn saturating_from_integer<N>(int: N) -> Self where
N: FixedPointOperand,
[src]
N: FixedPointOperand,
pub fn checked_from_integer(int: Self::Inner) -> Option<Self>
[src]
pub fn saturating_from_rational<N, D>(n: N, d: D) -> Self where
D: FixedPointOperand,
N: FixedPointOperand,
[src]
D: FixedPointOperand,
N: FixedPointOperand,
pub fn checked_from_rational<N, D>(n: N, d: D) -> Option<Self> where
D: FixedPointOperand,
N: FixedPointOperand,
[src]
D: FixedPointOperand,
N: FixedPointOperand,
pub fn checked_mul_int<N>(self, n: N) -> Option<N> where
N: FixedPointOperand,
[src]
N: FixedPointOperand,
pub fn saturating_mul_int<N>(self, n: N) -> N where
N: FixedPointOperand,
[src]
N: FixedPointOperand,
pub fn checked_div_int<N>(self, d: N) -> Option<N> where
N: FixedPointOperand,
[src]
N: FixedPointOperand,
pub fn saturating_div_int<N>(self, d: N) -> N where
N: FixedPointOperand,
[src]
N: FixedPointOperand,
pub fn saturating_mul_acc_int<N>(self, n: N) -> N where
N: FixedPointOperand,
[src]
N: FixedPointOperand,
pub fn saturating_abs(self) -> Self
[src]
pub fn reciprocal(self) -> Option<Self>
[src]
pub fn zero() -> Self
[src]
pub fn is_zero(&self) -> bool
[src]
pub fn one() -> Self
[src]
pub fn is_one(&self) -> bool
[src]
pub fn is_positive(self) -> bool
[src]
pub fn is_negative(self) -> bool
[src]
pub fn trunc(self) -> Self
[src]
pub fn frac(self) -> Self
[src]
pub fn ceil(self) -> Self
[src]
pub fn floor(self) -> Self
[src]
pub fn round(self) -> Self
[src]
impl<N, D> From<(N, D)> for FixedI64 where
D: FixedPointOperand,
N: FixedPointOperand,
[src]
impl<N, D> From<(N, D)> for FixedI64 where
D: FixedPointOperand,
N: FixedPointOperand,
[src]impl PartialOrd<FixedI64> for FixedI64
[src]
impl PartialOrd<FixedI64> for FixedI64
[src]pub fn partial_cmp(&self, other: &FixedI64) -> Option<Ordering>
[src]
#[must_use]pub fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
pub fn lt(&self, other: &Rhs) -> bool#[must_use]pub fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
pub fn le(&self, other: &Rhs) -> bool#[must_use]pub fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
pub fn gt(&self, other: &Rhs) -> bool#[must_use]pub fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
pub fn ge(&self, other: &Rhs) -> boolimpl Saturating for FixedI64
[src]
impl Saturating for FixedI64
[src]pub fn saturating_add(self, rhs: FixedI64) -> FixedI64
[src]
pub fn saturating_sub(self, rhs: FixedI64) -> FixedI64
[src]
pub fn saturating_mul(self, rhs: FixedI64) -> FixedI64
[src]
pub fn saturating_pow(self, exp: usize) -> FixedI64
[src]
impl Serialize for FixedI64
[src]
impl Serialize for FixedI64
[src]pub 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 Copy for FixedI64
[src]
impl EncodeLike<FixedI64> for FixedI64
[src]
impl Eq for FixedI64
[src]
impl StructuralEq for FixedI64
[src]
impl StructuralPartialEq for FixedI64
[src]
Auto Trait Implementations
impl RefUnwindSafe for FixedI64
impl Send for FixedI64
impl Sync for FixedI64
impl Unpin for FixedI64
impl UnwindSafe for FixedI64
Blanket Implementations
impl<T> CheckedConversion for 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> DecodeLimit for T where
T: Decode,
[src]
impl<T> DecodeLimit for T where
T: Decode,
[src]impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]pub fn equivalent(&self, key: &K) -> bool
[src]
impl<T> Instrument for T
[src]
impl<T> Instrument for T
[src]pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, Outer> IsWrappedBy<Outer> for T where
T: From<Outer>,
Outer: AsRef<T> + AsMut<T> + From<T>,
[src]
impl<T, Outer> IsWrappedBy<Outer> for T where
T: From<Outer>,
Outer: AsRef<T> + AsMut<T> + From<T>,
[src]impl<T> SaturatedConversion for T
[src]
impl<T> SaturatedConversion for T
[src]pub fn saturated_from<T>(t: T) -> Self where
Self: UniqueSaturatedFrom<T>,
[src]
Self: UniqueSaturatedFrom<T>,
pub fn saturated_into<T>(self) -> T where
Self: UniqueSaturatedInto<T>,
[src]
Self: UniqueSaturatedInto<T>,
impl<S, T> UncheckedInto<T> for S where
T: UncheckedFrom<S>,
[src]
impl<S, T> UncheckedInto<T> for S where
T: UncheckedFrom<S>,
[src]pub fn unchecked_into(self) -> T
[src]
impl<T, S> UniqueSaturatedFrom<T> for S where
S: TryFrom<T> + Bounded,
[src]
impl<T, S> UniqueSaturatedFrom<T> for S where
S: TryFrom<T> + Bounded,
[src]pub fn unique_saturated_from(t: T) -> S
[src]
impl<T, S> UniqueSaturatedInto<T> for S where
T: Bounded,
S: TryInto<T>,
[src]
impl<T, S> UniqueSaturatedInto<T> for S where
T: Bounded,
S: TryInto<T>,
[src]pub fn unique_saturated_into(self) -> T
[src]
impl<S> Codec for S where
S: Decode + Encode,
[src]
S: Decode + Encode,
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,
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, Global>> for T where
T: Encode,
[src]
T: Encode,
impl<'a, T> EncodeLike<Cow<'a, T>> for T where
T: ToOwned + Encode,
[src]
T: ToOwned + Encode,
impl<T> EncodeLike<Rc<T>> for T where
T: Encode,
[src]
T: Encode,
impl<T> Error for T where
T: 'static + Debug + Display + Send + Sync,
[src]
T: 'static + Debug + Display + Send + Sync,
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> MaybeDebug for T where
T: Debug,
[src]
T: Debug,
impl<T> MaybeDebug for T where
T: Debug,
[src]
T: Debug,
impl<T> MaybeDisplay for T where
T: Display,
[src]
T: Display,
impl<T> MaybeFromStr for T where
T: FromStr,
[src]
T: FromStr,
impl<T> MaybeRefUnwindSafe for T where
T: RefUnwindSafe,
[src]
T: RefUnwindSafe,
impl<T> MaybeSerialize for T where
T: Serialize,
[src]
T: Serialize,
impl<T> MaybeSerializeDeserialize for T where
T: DeserializeOwned + Serialize,
[src]
T: DeserializeOwned + Serialize,
impl<T> Member for T where
T: 'static + Send + Sync + Debug + Eq + PartialEq<T> + Clone,
[src]
T: 'static + Send + Sync + Debug + Eq + PartialEq<T> + Clone,