Struct sp_runtime::Rational128 [−][src]
pub struct Rational128(_, _);
Re-export top-level arithmetic stuff. A wrapper for any rational number with a 128 bit numerator and denominator.
Implementations
impl Rational128
[src]
impl Rational128
[src]Re-export top-level arithmetic stuff.
pub fn zero() -> Rational128
[src]
Zero.
pub fn one() -> Rational128
[src]
One
pub fn is_zero(&self) -> bool
[src]
If it is zero or not
pub fn from(n: u128, d: u128) -> Rational128
[src]
Build from a raw n/d
.
pub fn from_unchecked(n: u128, d: u128) -> Rational128
[src]
Build from a raw n/d
. This could lead to / 0 if not properly handled.
pub fn n(&self) -> u128
[src]
Return the numerator.
pub fn d(&self) -> u128
[src]
Return the denominator.
pub fn to_den(self, den: u128) -> Result<Rational128, &'static str>
[src]
Convert self
to a similar rational number where denominator is the given den
.
This only returns if the result is accurate. Err
is returned if the result cannot be
accurately calculated.
pub fn lcm(&self, other: &Rational128) -> Result<u128, &'static str>
[src]
Get the least common divisor of self
and other
.
This only returns if the result is accurate. Err
is returned if the result cannot be
accurately calculated.
pub fn lazy_saturating_add(self, other: Rational128) -> Rational128
[src]
A saturating add that assumes self
and other
have the same denominator.
pub fn lazy_saturating_sub(self, other: Rational128) -> Rational128
[src]
A saturating subtraction that assumes self
and other
have the same denominator.
pub fn checked_add(
self,
other: Rational128
) -> Result<Rational128, &'static str>
[src]
self,
other: Rational128
) -> Result<Rational128, &'static str>
Addition. Simply tries to unify the denominators and add the numerators.
Overflow might happen during any of the steps. Error is returned in such cases.
pub fn checked_sub(
self,
other: Rational128
) -> Result<Rational128, &'static str>
[src]
self,
other: Rational128
) -> Result<Rational128, &'static str>
Subtraction. Simply tries to unify the denominators and subtract the numerators.
Overflow might happen during any of the steps. None is returned in such cases.
Trait Implementations
impl Bounded for Rational128
[src]
impl Bounded for Rational128
[src]pub fn min_value() -> Rational128
[src]
pub fn max_value() -> Rational128
[src]
impl Clone for Rational128
[src]
impl Clone for Rational128
[src]pub fn clone(&self) -> Rational128
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Default for Rational128
[src]
impl Default for Rational128
[src]pub fn default() -> Rational128
[src]
impl<T> From<T> for Rational128 where
T: Into<u128>,
[src]
impl<T> From<T> for Rational128 where
T: Into<u128>,
[src]pub fn from(t: T) -> Rational128
[src]
impl Ord for Rational128
[src]
impl Ord for Rational128
[src]impl PartialEq<Rational128> for Rational128
[src]
impl PartialEq<Rational128> for Rational128
[src]impl PartialOrd<Rational128> for Rational128
[src]
impl PartialOrd<Rational128> for Rational128
[src]pub fn partial_cmp(&self, other: &Rational128) -> Option<Ordering>
[src]
#[must_use]pub fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl Copy for Rational128
[src]
impl Eq for Rational128
[src]
impl StructuralEq for Rational128
[src]
Auto Trait Implementations
impl RefUnwindSafe for Rational128
impl Send for Rational128
impl Sync for Rational128
impl Unpin for Rational128
impl UnwindSafe for Rational128
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<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<T> MaybeDebug for T where
T: Debug,
[src]
T: Debug,
impl<T> MaybeDebug for T where
T: Debug,
[src]
T: Debug,
impl<T> MaybeRefUnwindSafe for T where
T: RefUnwindSafe,
[src]
T: RefUnwindSafe,
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,