Struct amplify_num::u1
source · pub struct u1(/* private fields */);
Expand description
1-bit unsigned integer in the range 0..1
. It can be used instead of bool
when 1-bit numeric (and not boolean) arithmetic is required
Implementations§
source§impl u1
impl u1
source§impl u1
impl u1
sourcepub fn checked_add<T>(self, rhs: T) -> Option<Self>
pub fn checked_add<T>(self, rhs: T) -> Option<Self>
Checked integer addition. Computes self + rhs
, returning None
if
overflow occurred.
sourcepub fn saturating_add<T>(self, rhs: T) -> Self
pub fn saturating_add<T>(self, rhs: T) -> Self
Saturating integer addition. Computes self + rhs
, saturating at the
numeric bounds instead of overflowing.
sourcepub fn overflowing_add<T>(self, rhs: T) -> (Self, bool)
pub fn overflowing_add<T>(self, rhs: T) -> (Self, bool)
Calculates self + rhs
Returns a tuple of the addition along with a boolean indicating whether an arithmetic overflow would occur. If an overflow would have occurred then the wrapped value is returned.
sourcepub fn wrapping_add<T>(self, rhs: T) -> Self
pub fn wrapping_add<T>(self, rhs: T) -> Self
Wrapping (modular) addition. Computes self + rhs
, wrapping around at
the boundary of the type.
sourcepub fn checked_sub<T>(self, rhs: T) -> Option<Self>
pub fn checked_sub<T>(self, rhs: T) -> Option<Self>
Checked integer subtraction. Computes self - rhs
, returning None
if
overflow occurred.
sourcepub fn saturating_sub<T>(self, rhs: T) -> Self
pub fn saturating_sub<T>(self, rhs: T) -> Self
Saturating integer subtraction. Computes self - rhs
, saturating at the
numeric bounds instead of overflowing.
sourcepub fn overflowing_sub<T>(self, rhs: T) -> (Self, bool)
pub fn overflowing_sub<T>(self, rhs: T) -> (Self, bool)
Calculates self - rhs
Returns a tuple of the subtraction along with a boolean indicating whether an arithmetic overflow would occur. If an overflow would have occurred then the wrapped value is returned.
sourcepub fn wrapping_sub<T>(self, rhs: T) -> Self
pub fn wrapping_sub<T>(self, rhs: T) -> Self
Wrapping (modular) subtraction. Computes self - rhs
, wrapping around at
the boundary of the type.
sourcepub fn checked_mul<T>(self, rhs: T) -> Option<Self>
pub fn checked_mul<T>(self, rhs: T) -> Option<Self>
Checked integer multiplication. Computes self * rhs
, returning None
if
overflow occurred.
sourcepub fn saturating_mul<T>(self, rhs: T) -> Self
pub fn saturating_mul<T>(self, rhs: T) -> Self
Saturating integer multiplication. Computes self * rhs
, saturating at the
numeric bounds instead of overflowing.
sourcepub fn overflowing_mul<T>(self, rhs: T) -> (Self, bool)
pub fn overflowing_mul<T>(self, rhs: T) -> (Self, bool)
Calculates self * rhs
Returns a tuple of the multiplication along with a boolean indicating whether an arithmetic overflow would occur. If an overflow would have occurred then the wrapped value is returned.
sourcepub fn wrapping_mul<T>(self, rhs: T) -> Self
pub fn wrapping_mul<T>(self, rhs: T) -> Self
Wrapping (modular) multiplication. Computes self * rhs
, wrapping around at
the boundary of the type.
pub fn div_rem(self, other: Self) -> Result<(Self, Self), DivError>
Trait Implementations§
source§impl<T> AddAssign<T> for u1
impl<T> AddAssign<T> for u1
source§fn add_assign(&mut self, rhs: T)
fn add_assign(&mut self, rhs: T)
+=
operation. Read moresource§impl<T> BitAndAssign<T> for u1
impl<T> BitAndAssign<T> for u1
source§fn bitand_assign(&mut self, rhs: T)
fn bitand_assign(&mut self, rhs: T)
&=
operation. Read moresource§impl<T> BitOrAssign<T> for u1
impl<T> BitOrAssign<T> for u1
source§fn bitor_assign(&mut self, rhs: T)
fn bitor_assign(&mut self, rhs: T)
|=
operation. Read moresource§impl<T> BitXorAssign<T> for u1
impl<T> BitXorAssign<T> for u1
source§fn bitxor_assign(&mut self, rhs: T)
fn bitxor_assign(&mut self, rhs: T)
^=
operation. Read moresource§impl<T> DivAssign<T> for u1
impl<T> DivAssign<T> for u1
source§fn div_assign(&mut self, rhs: T)
fn div_assign(&mut self, rhs: T)
/=
operation. Read moresource§impl<T> MulAssign<T> for u1
impl<T> MulAssign<T> for u1
source§fn mul_assign(&mut self, rhs: T)
fn mul_assign(&mut self, rhs: T)
*=
operation. Read moresource§impl Ord for u1
impl Ord for u1
source§impl PartialOrd for u1
impl PartialOrd for u1
source§impl<T> RemAssign<T> for u1
impl<T> RemAssign<T> for u1
source§fn rem_assign(&mut self, rhs: T)
fn rem_assign(&mut self, rhs: T)
%=
operation. Read moresource§impl<T> ShlAssign<T> for u1
impl<T> ShlAssign<T> for u1
source§fn shl_assign(&mut self, rhs: T)
fn shl_assign(&mut self, rhs: T)
<<=
operation. Read moresource§impl<T> ShrAssign<T> for u1
impl<T> ShrAssign<T> for u1
source§fn shr_assign(&mut self, rhs: T)
fn shr_assign(&mut self, rhs: T)
>>=
operation. Read moresource§impl<T> SubAssign<T> for u1
impl<T> SubAssign<T> for u1
source§fn sub_assign(&mut self, rhs: T)
fn sub_assign(&mut self, rhs: T)
-=
operation. Read moreimpl Copy for u1
impl Eq for u1
impl StructuralPartialEq for u1
Auto Trait Implementations§
impl Freeze for u1
impl RefUnwindSafe for u1
impl Send for u1
impl Sync for u1
impl Unpin for u1
impl UnwindSafe for u1
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)