pub struct RationalU256 { /* private fields */ }
Expand description
Represents the ratio numerator / denominator
, where numerator
and denominator
are both
unsigned 256-bit integers.
Implementations§
Source§impl RationalU256
impl RationalU256
Sourcepub fn new(numer: U256, denom: U256) -> RationalU256
pub fn new(numer: U256, denom: U256) -> RationalU256
Sourcepub const fn new_raw(numer: U256, denom: U256) -> RationalU256
pub const fn new_raw(numer: U256, denom: U256) -> RationalU256
Creates a new ratio numer / denom
without checking whether denom
is zero.
Sourcepub const fn from_u256(t: U256) -> RationalU256
pub const fn from_u256(t: U256) -> RationalU256
Creates a new ratio t / 1
.
Sourcepub const fn zero() -> RationalU256
pub const fn zero() -> RationalU256
Creates a new ratio 0 / 1
.
Sourcepub const fn one() -> RationalU256
pub const fn one() -> RationalU256
Creates a new ratio 1 / 1
.
Sourcepub fn saturating_sub(self, rhs: RationalU256) -> Self
pub fn saturating_sub(self, rhs: RationalU256) -> Self
Computes self - rhs
and saturates the result to zero when self
is less than rhs
.
Returns self - rhs
when self > rhs
, returns zero otherwise.
Sourcepub fn saturating_sub_u256(self, rhs: U256) -> Self
pub fn saturating_sub_u256(self, rhs: U256) -> Self
Computes self - rhs
and saturates the result to zero when self
is less than rhs
.
Returns self - rhs
when self > rhs
, returns zero otherwise.
Trait Implementations§
Source§impl Add<&RationalU256> for &RationalU256
impl Add<&RationalU256> for &RationalU256
Source§type Output = RationalU256
type Output = RationalU256
The resulting type after applying the
+
operator.Source§fn add(self, rhs: &RationalU256) -> RationalU256
fn add(self, rhs: &RationalU256) -> RationalU256
Performs the
+
operation. Read moreSource§impl Add<&RationalU256> for RationalU256
impl Add<&RationalU256> for RationalU256
Source§type Output = RationalU256
type Output = RationalU256
The resulting type after applying the
+
operator.Source§fn add(self, rhs: &RationalU256) -> RationalU256
fn add(self, rhs: &RationalU256) -> RationalU256
Performs the
+
operation. Read moreSource§impl Add<&U256> for &RationalU256
impl Add<&U256> for &RationalU256
Source§type Output = RationalU256
type Output = RationalU256
The resulting type after applying the
+
operator.Source§impl Add<&U256> for RationalU256
impl Add<&U256> for RationalU256
Source§type Output = RationalU256
type Output = RationalU256
The resulting type after applying the
+
operator.Source§impl Add<RationalU256> for &RationalU256
impl Add<RationalU256> for &RationalU256
Source§type Output = RationalU256
type Output = RationalU256
The resulting type after applying the
+
operator.Source§fn add(self, rhs: RationalU256) -> RationalU256
fn add(self, rhs: RationalU256) -> RationalU256
Performs the
+
operation. Read moreSource§impl Add<U256> for &RationalU256
impl Add<U256> for &RationalU256
Source§type Output = RationalU256
type Output = RationalU256
The resulting type after applying the
+
operator.Source§impl Add<U256> for RationalU256
impl Add<U256> for RationalU256
Source§type Output = RationalU256
type Output = RationalU256
The resulting type after applying the
+
operator.Source§impl Add for RationalU256
impl Add for RationalU256
Source§type Output = RationalU256
type Output = RationalU256
The resulting type after applying the
+
operator.Source§fn add(self, rhs: RationalU256) -> RationalU256
fn add(self, rhs: RationalU256) -> RationalU256
Performs the
+
operation. Read moreSource§impl Clone for RationalU256
impl Clone for RationalU256
Source§fn clone(&self) -> RationalU256
fn clone(&self) -> RationalU256
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RationalU256
impl Debug for RationalU256
Source§impl<'de> Deserialize<'de> for RationalU256
impl<'de> Deserialize<'de> for RationalU256
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for RationalU256
impl Display for RationalU256
Source§impl Div<&RationalU256> for &RationalU256
impl Div<&RationalU256> for &RationalU256
Source§type Output = RationalU256
type Output = RationalU256
The resulting type after applying the
/
operator.Source§fn div(self, rhs: &RationalU256) -> RationalU256
fn div(self, rhs: &RationalU256) -> RationalU256
Performs the
/
operation. Read moreSource§impl Div<&RationalU256> for RationalU256
impl Div<&RationalU256> for RationalU256
Source§type Output = RationalU256
type Output = RationalU256
The resulting type after applying the
/
operator.Source§fn div(self, rhs: &RationalU256) -> RationalU256
fn div(self, rhs: &RationalU256) -> RationalU256
Performs the
/
operation. Read moreSource§impl Div<&U256> for &RationalU256
impl Div<&U256> for &RationalU256
Source§type Output = RationalU256
type Output = RationalU256
The resulting type after applying the
/
operator.Source§impl Div<&U256> for RationalU256
impl Div<&U256> for RationalU256
Source§type Output = RationalU256
type Output = RationalU256
The resulting type after applying the
/
operator.Source§impl Div<RationalU256> for &RationalU256
impl Div<RationalU256> for &RationalU256
Source§type Output = RationalU256
type Output = RationalU256
The resulting type after applying the
/
operator.Source§fn div(self, rhs: RationalU256) -> RationalU256
fn div(self, rhs: RationalU256) -> RationalU256
Performs the
/
operation. Read moreSource§impl Div<U256> for &RationalU256
impl Div<U256> for &RationalU256
Source§type Output = RationalU256
type Output = RationalU256
The resulting type after applying the
/
operator.Source§impl Div<U256> for RationalU256
impl Div<U256> for RationalU256
Source§type Output = RationalU256
type Output = RationalU256
The resulting type after applying the
/
operator.Source§impl Div for RationalU256
impl Div for RationalU256
Source§type Output = RationalU256
type Output = RationalU256
The resulting type after applying the
/
operator.Source§fn div(self, rhs: RationalU256) -> RationalU256
fn div(self, rhs: RationalU256) -> RationalU256
Performs the
/
operation. Read moreSource§impl Mul<&RationalU256> for &RationalU256
impl Mul<&RationalU256> for &RationalU256
Source§type Output = RationalU256
type Output = RationalU256
The resulting type after applying the
*
operator.Source§fn mul(self, rhs: &RationalU256) -> RationalU256
fn mul(self, rhs: &RationalU256) -> RationalU256
Performs the
*
operation. Read moreSource§impl Mul<&RationalU256> for RationalU256
impl Mul<&RationalU256> for RationalU256
Source§type Output = RationalU256
type Output = RationalU256
The resulting type after applying the
*
operator.Source§fn mul(self, rhs: &RationalU256) -> RationalU256
fn mul(self, rhs: &RationalU256) -> RationalU256
Performs the
*
operation. Read moreSource§impl Mul<&U256> for &RationalU256
impl Mul<&U256> for &RationalU256
Source§type Output = RationalU256
type Output = RationalU256
The resulting type after applying the
*
operator.Source§impl Mul<&U256> for RationalU256
impl Mul<&U256> for RationalU256
Source§type Output = RationalU256
type Output = RationalU256
The resulting type after applying the
*
operator.Source§impl Mul<RationalU256> for &RationalU256
impl Mul<RationalU256> for &RationalU256
Source§type Output = RationalU256
type Output = RationalU256
The resulting type after applying the
*
operator.Source§fn mul(self, rhs: RationalU256) -> RationalU256
fn mul(self, rhs: RationalU256) -> RationalU256
Performs the
*
operation. Read moreSource§impl Mul<U256> for &RationalU256
impl Mul<U256> for &RationalU256
Source§type Output = RationalU256
type Output = RationalU256
The resulting type after applying the
*
operator.Source§impl Mul<U256> for RationalU256
impl Mul<U256> for RationalU256
Source§type Output = RationalU256
type Output = RationalU256
The resulting type after applying the
*
operator.Source§impl Mul for RationalU256
impl Mul for RationalU256
Source§type Output = RationalU256
type Output = RationalU256
The resulting type after applying the
*
operator.Source§fn mul(self, rhs: RationalU256) -> RationalU256
fn mul(self, rhs: RationalU256) -> RationalU256
Performs the
*
operation. Read moreSource§impl Ord for RationalU256
impl Ord for RationalU256
Source§fn cmp(&self, other: &RationalU256) -> Ordering
fn cmp(&self, other: &RationalU256) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for RationalU256
impl PartialEq for RationalU256
Source§impl PartialOrd for RationalU256
impl PartialOrd for RationalU256
Source§impl Serialize for RationalU256
impl Serialize for RationalU256
Source§impl Sub<&RationalU256> for &RationalU256
impl Sub<&RationalU256> for &RationalU256
Source§type Output = RationalU256
type Output = RationalU256
The resulting type after applying the
-
operator.Source§fn sub(self, rhs: &RationalU256) -> RationalU256
fn sub(self, rhs: &RationalU256) -> RationalU256
Performs the
-
operation. Read moreSource§impl Sub<&RationalU256> for RationalU256
impl Sub<&RationalU256> for RationalU256
Source§type Output = RationalU256
type Output = RationalU256
The resulting type after applying the
-
operator.Source§fn sub(self, rhs: &RationalU256) -> RationalU256
fn sub(self, rhs: &RationalU256) -> RationalU256
Performs the
-
operation. Read moreSource§impl Sub<&U256> for &RationalU256
impl Sub<&U256> for &RationalU256
Source§type Output = RationalU256
type Output = RationalU256
The resulting type after applying the
-
operator.Source§impl Sub<&U256> for RationalU256
impl Sub<&U256> for RationalU256
Source§type Output = RationalU256
type Output = RationalU256
The resulting type after applying the
-
operator.Source§impl Sub<RationalU256> for &RationalU256
impl Sub<RationalU256> for &RationalU256
Source§type Output = RationalU256
type Output = RationalU256
The resulting type after applying the
-
operator.Source§fn sub(self, rhs: RationalU256) -> RationalU256
fn sub(self, rhs: RationalU256) -> RationalU256
Performs the
-
operation. Read moreSource§impl Sub<U256> for &RationalU256
impl Sub<U256> for &RationalU256
Source§type Output = RationalU256
type Output = RationalU256
The resulting type after applying the
-
operator.Source§impl Sub<U256> for RationalU256
impl Sub<U256> for RationalU256
Source§type Output = RationalU256
type Output = RationalU256
The resulting type after applying the
-
operator.Source§impl Sub for RationalU256
impl Sub for RationalU256
Source§type Output = RationalU256
type Output = RationalU256
The resulting type after applying the
-
operator.Source§fn sub(self, rhs: RationalU256) -> RationalU256
fn sub(self, rhs: RationalU256) -> RationalU256
Performs the
-
operation. Read moreimpl Eq for RationalU256
impl StructuralPartialEq for RationalU256
Auto Trait Implementations§
impl Freeze for RationalU256
impl RefUnwindSafe for RationalU256
impl Send for RationalU256
impl Sync for RationalU256
impl Unpin for RationalU256
impl UnwindSafe for RationalU256
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)