Skip to main content

Wrapping

Struct Wrapping 

pub struct Wrapping<T>(pub T);
Expand description

Provides intentionally-wrapped arithmetic on T.

This is analogous to core::num::Wrapping but allows this crate to define trait impls for this type.

Tuple Fields§

§0: T

Trait Implementations§

§

impl Add<&Wrapping<Limb>> for &Wrapping<Limb>

§

type Output = Wrapping<Limb>

The resulting type after applying the + operator.
§

fn add(self, rhs: &Wrapping<Limb>) -> Wrapping<Limb>

Performs the + operation. Read more
§

impl Add<&Wrapping<Limb>> for Wrapping<Limb>

§

type Output = Wrapping<Limb>

The resulting type after applying the + operator.
§

fn add(self, rhs: &Wrapping<Limb>) -> Wrapping<Limb>

Performs the + operation. Read more
§

impl<const LIMBS: usize> Add<&Wrapping<Uint<LIMBS>>> for &Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Uint<LIMBS>>

The resulting type after applying the + operator.
§

fn add(self, rhs: &Wrapping<Uint<LIMBS>>) -> Wrapping<Uint<LIMBS>>

Performs the + operation. Read more
§

impl<const LIMBS: usize> Add<&Wrapping<Uint<LIMBS>>> for Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Uint<LIMBS>>

The resulting type after applying the + operator.
§

fn add(self, rhs: &Wrapping<Uint<LIMBS>>) -> Wrapping<Uint<LIMBS>>

Performs the + operation. Read more
§

impl Add<Wrapping<Limb>> for &Wrapping<Limb>

§

type Output = Wrapping<Limb>

The resulting type after applying the + operator.
§

fn add(self, rhs: Wrapping<Limb>) -> Wrapping<Limb>

Performs the + operation. Read more
§

impl<const LIMBS: usize> Add<Wrapping<Uint<LIMBS>>> for &Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Uint<LIMBS>>

The resulting type after applying the + operator.
§

fn add(self, rhs: Wrapping<Uint<LIMBS>>) -> Wrapping<Uint<LIMBS>>

Performs the + operation. Read more
§

impl Add for Wrapping<Limb>

§

type Output = Wrapping<Limb>

The resulting type after applying the + operator.
§

fn add(self, rhs: Wrapping<Limb>) -> Wrapping<Limb>

Performs the + operation. Read more
§

impl<const LIMBS: usize> Add for Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Uint<LIMBS>>

The resulting type after applying the + operator.
§

fn add(self, rhs: Wrapping<Uint<LIMBS>>) -> Wrapping<Uint<LIMBS>>

Performs the + operation. Read more
§

impl AddAssign<&Wrapping<Limb>> for Wrapping<Limb>

§

fn add_assign(&mut self, other: &Wrapping<Limb>)

Performs the += operation. Read more
§

impl<const LIMBS: usize> AddAssign<&Wrapping<Uint<LIMBS>>> for Wrapping<Uint<LIMBS>>

§

fn add_assign(&mut self, other: &Wrapping<Uint<LIMBS>>)

Performs the += operation. Read more
§

impl AddAssign for Wrapping<Limb>

§

fn add_assign(&mut self, other: Wrapping<Limb>)

Performs the += operation. Read more
§

impl<const LIMBS: usize> AddAssign for Wrapping<Uint<LIMBS>>

§

fn add_assign(&mut self, other: Wrapping<Uint<LIMBS>>)

Performs the += operation. Read more
§

impl<T> Binary for Wrapping<T>
where T: Binary,

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl<const LIMBS: usize> BitAnd<&Wrapping<Uint<LIMBS>>> for &Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Uint<LIMBS>>

The resulting type after applying the & operator.
§

fn bitand(self, rhs: &Wrapping<Uint<LIMBS>>) -> Wrapping<Uint<LIMBS>>

Performs the & operation. Read more
§

impl<const LIMBS: usize> BitAnd<&Wrapping<Uint<LIMBS>>> for Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Uint<LIMBS>>

The resulting type after applying the & operator.
§

fn bitand(self, rhs: &Wrapping<Uint<LIMBS>>) -> Wrapping<Uint<LIMBS>>

Performs the & operation. Read more
§

impl<const LIMBS: usize> BitAnd<Wrapping<Uint<LIMBS>>> for &Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Uint<LIMBS>>

The resulting type after applying the & operator.
§

fn bitand(self, rhs: Wrapping<Uint<LIMBS>>) -> Wrapping<Uint<LIMBS>>

Performs the & operation. Read more
§

impl<const LIMBS: usize> BitAnd for Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Uint<LIMBS>>

The resulting type after applying the & operator.
§

fn bitand(self, rhs: Wrapping<Uint<LIMBS>>) -> Wrapping<Uint<LIMBS>>

Performs the & operation. Read more
§

impl<const LIMBS: usize> BitAndAssign<&Wrapping<Uint<LIMBS>>> for Wrapping<Uint<LIMBS>>

§

fn bitand_assign(&mut self, other: &Wrapping<Uint<LIMBS>>)

Performs the &= operation. Read more
§

impl<const LIMBS: usize> BitAndAssign for Wrapping<Uint<LIMBS>>

§

fn bitand_assign(&mut self, other: Wrapping<Uint<LIMBS>>)

Performs the &= operation. Read more
§

impl<const LIMBS: usize> BitOr<&Wrapping<Uint<LIMBS>>> for &Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Uint<LIMBS>>

The resulting type after applying the | operator.
§

fn bitor(self, rhs: &Wrapping<Uint<LIMBS>>) -> Wrapping<Uint<LIMBS>>

Performs the | operation. Read more
§

impl<const LIMBS: usize> BitOr<&Wrapping<Uint<LIMBS>>> for Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Uint<LIMBS>>

The resulting type after applying the | operator.
§

fn bitor(self, rhs: &Wrapping<Uint<LIMBS>>) -> Wrapping<Uint<LIMBS>>

Performs the | operation. Read more
§

impl<const LIMBS: usize> BitOr<Wrapping<Uint<LIMBS>>> for &Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Uint<LIMBS>>

The resulting type after applying the | operator.
§

fn bitor(self, rhs: Wrapping<Uint<LIMBS>>) -> Wrapping<Uint<LIMBS>>

Performs the | operation. Read more
§

impl<const LIMBS: usize> BitOr for Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Uint<LIMBS>>

The resulting type after applying the | operator.
§

fn bitor(self, rhs: Wrapping<Uint<LIMBS>>) -> Wrapping<Uint<LIMBS>>

Performs the | operation. Read more
§

impl<const LIMBS: usize> BitOrAssign<&Wrapping<Uint<LIMBS>>> for Wrapping<Uint<LIMBS>>

§

fn bitor_assign(&mut self, other: &Wrapping<Uint<LIMBS>>)

Performs the |= operation. Read more
§

impl<const LIMBS: usize> BitOrAssign for Wrapping<Uint<LIMBS>>

§

fn bitor_assign(&mut self, other: Wrapping<Uint<LIMBS>>)

Performs the |= operation. Read more
§

impl<const LIMBS: usize> BitXor<&Wrapping<Uint<LIMBS>>> for &Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Uint<LIMBS>>

The resulting type after applying the ^ operator.
§

fn bitxor(self, rhs: &Wrapping<Uint<LIMBS>>) -> Wrapping<Uint<LIMBS>>

Performs the ^ operation. Read more
§

impl<const LIMBS: usize> BitXor<&Wrapping<Uint<LIMBS>>> for Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Uint<LIMBS>>

The resulting type after applying the ^ operator.
§

fn bitxor(self, rhs: &Wrapping<Uint<LIMBS>>) -> Wrapping<Uint<LIMBS>>

Performs the ^ operation. Read more
§

impl<const LIMBS: usize> BitXor<Wrapping<Uint<LIMBS>>> for &Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Uint<LIMBS>>

The resulting type after applying the ^ operator.
§

fn bitxor(self, rhs: Wrapping<Uint<LIMBS>>) -> Wrapping<Uint<LIMBS>>

Performs the ^ operation. Read more
§

impl<const LIMBS: usize> BitXor for Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Uint<LIMBS>>

The resulting type after applying the ^ operator.
§

fn bitxor(self, rhs: Wrapping<Uint<LIMBS>>) -> Wrapping<Uint<LIMBS>>

Performs the ^ operation. Read more
§

impl<const LIMBS: usize> BitXorAssign<&Wrapping<Uint<LIMBS>>> for Wrapping<Uint<LIMBS>>

§

fn bitxor_assign(&mut self, other: &Wrapping<Uint<LIMBS>>)

Performs the ^= operation. Read more
§

impl<const LIMBS: usize> BitXorAssign for Wrapping<Uint<LIMBS>>

§

fn bitxor_assign(&mut self, other: Wrapping<Uint<LIMBS>>)

Performs the ^= operation. Read more
§

impl<T> Clone for Wrapping<T>
where T: Clone,

§

fn clone(&self) -> Wrapping<T>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl<T> ConditionallySelectable for Wrapping<T>

§

fn conditional_select( a: &Wrapping<T>, b: &Wrapping<T>, choice: Choice, ) -> Wrapping<T>

Select a or b according to choice. Read more
Source§

fn conditional_assign(&mut self, other: &Self, choice: Choice)

Conditionally assign other to self, according to choice. Read more
Source§

fn conditional_swap(a: &mut Self, b: &mut Self, choice: Choice)

Conditionally swap self and other if choice == 1; otherwise, reassign both unto themselves. Read more
§

impl<T> ConstantTimeEq for Wrapping<T>
where T: ConstantTimeEq,

§

fn ct_eq(&self, other: &Wrapping<T>) -> Choice

Determine if two items are equal. Read more
Source§

fn ct_ne(&self, other: &Self) -> Choice

Determine if two items are NOT equal. Read more
§

impl<T> Debug for Wrapping<T>
where T: Debug,

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl<T> Default for Wrapping<T>
where T: Default,

§

fn default() -> Wrapping<T>

Returns the “default value” for a type. Read more
§

impl<T> Display for Wrapping<T>
where T: Display,

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl<const LIMBS: usize> Div<&NonZero<Limb>> for &Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Uint<LIMBS>>

The resulting type after applying the / operator.
§

fn div( self, rhs: &NonZero<Limb>, ) -> <&Wrapping<Uint<LIMBS>> as Div<&NonZero<Limb>>>::Output

Performs the / operation. Read more
§

impl<const LIMBS: usize> Div<&NonZero<Limb>> for Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Uint<LIMBS>>

The resulting type after applying the / operator.
§

fn div( self, rhs: &NonZero<Limb>, ) -> <Wrapping<Uint<LIMBS>> as Div<&NonZero<Limb>>>::Output

Performs the / operation. Read more
§

impl<const LIMBS: usize> Div<&NonZero<Uint<LIMBS>>> for &Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Uint<LIMBS>>

The resulting type after applying the / operator.
§

fn div( self, rhs: &NonZero<Uint<LIMBS>>, ) -> <&Wrapping<Uint<LIMBS>> as Div<&NonZero<Uint<LIMBS>>>>::Output

Performs the / operation. Read more
§

impl<const LIMBS: usize> Div<&NonZero<Uint<LIMBS>>> for Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Uint<LIMBS>>

The resulting type after applying the / operator.
§

fn div( self, rhs: &NonZero<Uint<LIMBS>>, ) -> <Wrapping<Uint<LIMBS>> as Div<&NonZero<Uint<LIMBS>>>>::Output

Performs the / operation. Read more
§

impl<const LIMBS: usize> Div<NonZero<Limb>> for &Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Uint<LIMBS>>

The resulting type after applying the / operator.
§

fn div( self, rhs: NonZero<Limb>, ) -> <&Wrapping<Uint<LIMBS>> as Div<NonZero<Limb>>>::Output

Performs the / operation. Read more
§

impl<const LIMBS: usize> Div<NonZero<Limb>> for Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Uint<LIMBS>>

The resulting type after applying the / operator.
§

fn div( self, rhs: NonZero<Limb>, ) -> <Wrapping<Uint<LIMBS>> as Div<NonZero<Limb>>>::Output

Performs the / operation. Read more
§

impl<const LIMBS: usize> Div<NonZero<Uint<LIMBS>>> for &Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Uint<LIMBS>>

The resulting type after applying the / operator.
§

fn div( self, rhs: NonZero<Uint<LIMBS>>, ) -> <&Wrapping<Uint<LIMBS>> as Div<NonZero<Uint<LIMBS>>>>::Output

Performs the / operation. Read more
§

impl<const LIMBS: usize> Div<NonZero<Uint<LIMBS>>> for Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Uint<LIMBS>>

The resulting type after applying the / operator.
§

fn div( self, rhs: NonZero<Uint<LIMBS>>, ) -> <Wrapping<Uint<LIMBS>> as Div<NonZero<Uint<LIMBS>>>>::Output

Performs the / operation. Read more
§

impl<const LIMBS: usize> DivAssign<&NonZero<Limb>> for Wrapping<Uint<LIMBS>>

§

fn div_assign(&mut self, rhs: &NonZero<Limb>)

Performs the /= operation. Read more
§

impl<const LIMBS: usize> DivAssign<&NonZero<Uint<LIMBS>>> for Wrapping<Uint<LIMBS>>

§

fn div_assign(&mut self, rhs: &NonZero<Uint<LIMBS>>)

Performs the /= operation. Read more
§

impl<const LIMBS: usize> DivAssign<NonZero<Limb>> for Wrapping<Uint<LIMBS>>

§

fn div_assign(&mut self, rhs: NonZero<Limb>)

Performs the /= operation. Read more
§

impl<const LIMBS: usize> DivAssign<NonZero<Uint<LIMBS>>> for Wrapping<Uint<LIMBS>>

§

fn div_assign(&mut self, rhs: NonZero<Uint<LIMBS>>)

Performs the /= operation. Read more
§

impl<T> LowerHex for Wrapping<T>
where T: LowerHex,

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl Mul<&Wrapping<Limb>> for &Wrapping<Limb>

§

type Output = Wrapping<Limb>

The resulting type after applying the * operator.
§

fn mul(self, rhs: &Wrapping<Limb>) -> Wrapping<Limb>

Performs the * operation. Read more
§

impl Mul<&Wrapping<Limb>> for Wrapping<Limb>

§

type Output = Wrapping<Limb>

The resulting type after applying the * operator.
§

fn mul(self, rhs: &Wrapping<Limb>) -> Wrapping<Limb>

Performs the * operation. Read more
§

impl<const LIMBS: usize, const HLIMBS: usize> Mul<&Wrapping<Uint<HLIMBS>>> for &Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Uint<LIMBS>>

The resulting type after applying the * operator.
§

fn mul(self, rhs: &Wrapping<Uint<HLIMBS>>) -> Wrapping<Uint<LIMBS>>

Performs the * operation. Read more
§

impl<const LIMBS: usize, const HLIMBS: usize> Mul<&Wrapping<Uint<HLIMBS>>> for Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Uint<LIMBS>>

The resulting type after applying the * operator.
§

fn mul(self, rhs: &Wrapping<Uint<HLIMBS>>) -> Wrapping<Uint<LIMBS>>

Performs the * operation. Read more
§

impl Mul<Wrapping<Limb>> for &Wrapping<Limb>

§

type Output = Wrapping<Limb>

The resulting type after applying the * operator.
§

fn mul(self, rhs: Wrapping<Limb>) -> Wrapping<Limb>

Performs the * operation. Read more
§

impl<const LIMBS: usize, const HLIMBS: usize> Mul<Wrapping<Uint<HLIMBS>>> for &Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Uint<LIMBS>>

The resulting type after applying the * operator.
§

fn mul(self, rhs: Wrapping<Uint<HLIMBS>>) -> Wrapping<Uint<LIMBS>>

Performs the * operation. Read more
§

impl<const LIMBS: usize, const HLIMBS: usize> Mul<Wrapping<Uint<HLIMBS>>> for Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Uint<LIMBS>>

The resulting type after applying the * operator.
§

fn mul(self, rhs: Wrapping<Uint<HLIMBS>>) -> Wrapping<Uint<LIMBS>>

Performs the * operation. Read more
§

impl Mul for Wrapping<Limb>

§

type Output = Wrapping<Limb>

The resulting type after applying the * operator.
§

fn mul(self, rhs: Wrapping<Limb>) -> Wrapping<Limb>

Performs the * operation. Read more
§

impl MulAssign<&Wrapping<Limb>> for Wrapping<Limb>

§

fn mul_assign(&mut self, other: &Wrapping<Limb>)

Performs the *= operation. Read more
§

impl<const LIMBS: usize, const HLIMBS: usize> MulAssign<&Wrapping<Uint<HLIMBS>>> for Wrapping<Uint<LIMBS>>

§

fn mul_assign(&mut self, other: &Wrapping<Uint<HLIMBS>>)

Performs the *= operation. Read more
§

impl<const LIMBS: usize, const HLIMBS: usize> MulAssign<Wrapping<Uint<HLIMBS>>> for Wrapping<Uint<LIMBS>>

§

fn mul_assign(&mut self, other: Wrapping<Uint<HLIMBS>>)

Performs the *= operation. Read more
§

impl MulAssign for Wrapping<Limb>

§

fn mul_assign(&mut self, other: Wrapping<Limb>)

Performs the *= operation. Read more
§

impl Neg for Wrapping<Limb>

§

type Output = Wrapping<Limb>

The resulting type after applying the - operator.
§

fn neg(self) -> <Wrapping<Limb> as Neg>::Output

Performs the unary - operation. Read more
§

impl<const LIMBS: usize> Neg for Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Uint<LIMBS>>

The resulting type after applying the - operator.
§

fn neg(self) -> <Wrapping<Uint<LIMBS>> as Neg>::Output

Performs the unary - operation. Read more
§

impl<const LIMBS: usize> Not for Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Uint<LIMBS>>

The resulting type after applying the ! operator.
§

fn not(self) -> <Wrapping<Uint<LIMBS>> as Not>::Output

Performs the unary ! operation. Read more
§

impl<T> Octal for Wrapping<T>
where T: Octal,

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl<T> Ord for Wrapping<T>
where T: Ord,

§

fn cmp(&self, other: &Wrapping<T>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
§

impl<T> PartialEq for Wrapping<T>
where T: PartialEq,

§

fn eq(&self, other: &Wrapping<T>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl<T> PartialOrd for Wrapping<T>
where T: PartialOrd,

§

fn partial_cmp(&self, other: &Wrapping<T>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
§

impl<T> Random for Wrapping<T>
where T: Random,

Available on crate feature rand_core only.
§

fn random(rng: &mut impl CryptoRngCore) -> Wrapping<T>

Generate a cryptographically secure random value.
§

impl<const LIMBS: usize> Rem<&NonZero<Limb>> for &Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Limb>

The resulting type after applying the % operator.
§

fn rem( self, rhs: &NonZero<Limb>, ) -> <&Wrapping<Uint<LIMBS>> as Rem<&NonZero<Limb>>>::Output

Performs the % operation. Read more
§

impl<const LIMBS: usize> Rem<&NonZero<Limb>> for Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Limb>

The resulting type after applying the % operator.
§

fn rem( self, rhs: &NonZero<Limb>, ) -> <Wrapping<Uint<LIMBS>> as Rem<&NonZero<Limb>>>::Output

Performs the % operation. Read more
§

impl<const LIMBS: usize> Rem<&NonZero<Uint<LIMBS>>> for &Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Uint<LIMBS>>

The resulting type after applying the % operator.
§

fn rem( self, rhs: &NonZero<Uint<LIMBS>>, ) -> <&Wrapping<Uint<LIMBS>> as Rem<&NonZero<Uint<LIMBS>>>>::Output

Performs the % operation. Read more
§

impl<const LIMBS: usize> Rem<&NonZero<Uint<LIMBS>>> for Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Uint<LIMBS>>

The resulting type after applying the % operator.
§

fn rem( self, rhs: &NonZero<Uint<LIMBS>>, ) -> <Wrapping<Uint<LIMBS>> as Rem<&NonZero<Uint<LIMBS>>>>::Output

Performs the % operation. Read more
§

impl<const LIMBS: usize> Rem<NonZero<Limb>> for &Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Limb>

The resulting type after applying the % operator.
§

fn rem( self, rhs: NonZero<Limb>, ) -> <&Wrapping<Uint<LIMBS>> as Rem<NonZero<Limb>>>::Output

Performs the % operation. Read more
§

impl<const LIMBS: usize> Rem<NonZero<Limb>> for Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Limb>

The resulting type after applying the % operator.
§

fn rem( self, rhs: NonZero<Limb>, ) -> <Wrapping<Uint<LIMBS>> as Rem<NonZero<Limb>>>::Output

Performs the % operation. Read more
§

impl<const LIMBS: usize> Rem<NonZero<Uint<LIMBS>>> for &Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Uint<LIMBS>>

The resulting type after applying the % operator.
§

fn rem( self, rhs: NonZero<Uint<LIMBS>>, ) -> <&Wrapping<Uint<LIMBS>> as Rem<NonZero<Uint<LIMBS>>>>::Output

Performs the % operation. Read more
§

impl<const LIMBS: usize> Rem<NonZero<Uint<LIMBS>>> for Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Uint<LIMBS>>

The resulting type after applying the % operator.
§

fn rem( self, rhs: NonZero<Uint<LIMBS>>, ) -> <Wrapping<Uint<LIMBS>> as Rem<NonZero<Uint<LIMBS>>>>::Output

Performs the % operation. Read more
§

impl<const LIMBS: usize> RemAssign<&NonZero<Limb>> for Wrapping<Uint<LIMBS>>

§

fn rem_assign(&mut self, rhs: &NonZero<Limb>)

Performs the %= operation. Read more
§

impl<const LIMBS: usize> RemAssign<&NonZero<Uint<LIMBS>>> for Wrapping<Uint<LIMBS>>

§

fn rem_assign(&mut self, rhs: &NonZero<Uint<LIMBS>>)

Performs the %= operation. Read more
§

impl<const LIMBS: usize> RemAssign<NonZero<Limb>> for Wrapping<Uint<LIMBS>>

§

fn rem_assign(&mut self, rhs: NonZero<Limb>)

Performs the %= operation. Read more
§

impl<const LIMBS: usize> RemAssign<NonZero<Uint<LIMBS>>> for Wrapping<Uint<LIMBS>>

§

fn rem_assign(&mut self, rhs: NonZero<Uint<LIMBS>>)

Performs the %= operation. Read more
§

impl Sub<&Wrapping<Limb>> for &Wrapping<Limb>

§

type Output = Wrapping<Limb>

The resulting type after applying the - operator.
§

fn sub(self, rhs: &Wrapping<Limb>) -> Wrapping<Limb>

Performs the - operation. Read more
§

impl Sub<&Wrapping<Limb>> for Wrapping<Limb>

§

type Output = Wrapping<Limb>

The resulting type after applying the - operator.
§

fn sub(self, rhs: &Wrapping<Limb>) -> Wrapping<Limb>

Performs the - operation. Read more
§

impl<const LIMBS: usize> Sub<&Wrapping<Uint<LIMBS>>> for &Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Uint<LIMBS>>

The resulting type after applying the - operator.
§

fn sub(self, rhs: &Wrapping<Uint<LIMBS>>) -> Wrapping<Uint<LIMBS>>

Performs the - operation. Read more
§

impl<const LIMBS: usize> Sub<&Wrapping<Uint<LIMBS>>> for Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Uint<LIMBS>>

The resulting type after applying the - operator.
§

fn sub(self, rhs: &Wrapping<Uint<LIMBS>>) -> Wrapping<Uint<LIMBS>>

Performs the - operation. Read more
§

impl Sub<Wrapping<Limb>> for &Wrapping<Limb>

§

type Output = Wrapping<Limb>

The resulting type after applying the - operator.
§

fn sub(self, rhs: Wrapping<Limb>) -> Wrapping<Limb>

Performs the - operation. Read more
§

impl<const LIMBS: usize> Sub<Wrapping<Uint<LIMBS>>> for &Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Uint<LIMBS>>

The resulting type after applying the - operator.
§

fn sub(self, rhs: Wrapping<Uint<LIMBS>>) -> Wrapping<Uint<LIMBS>>

Performs the - operation. Read more
§

impl Sub for Wrapping<Limb>

§

type Output = Wrapping<Limb>

The resulting type after applying the - operator.
§

fn sub(self, rhs: Wrapping<Limb>) -> Wrapping<Limb>

Performs the - operation. Read more
§

impl<const LIMBS: usize> Sub for Wrapping<Uint<LIMBS>>

§

type Output = Wrapping<Uint<LIMBS>>

The resulting type after applying the - operator.
§

fn sub(self, rhs: Wrapping<Uint<LIMBS>>) -> Wrapping<Uint<LIMBS>>

Performs the - operation. Read more
§

impl SubAssign<&Wrapping<Limb>> for Wrapping<Limb>

§

fn sub_assign(&mut self, other: &Wrapping<Limb>)

Performs the -= operation. Read more
§

impl<const LIMBS: usize> SubAssign<&Wrapping<Uint<LIMBS>>> for Wrapping<Uint<LIMBS>>

§

fn sub_assign(&mut self, other: &Wrapping<Uint<LIMBS>>)

Performs the -= operation. Read more
§

impl SubAssign for Wrapping<Limb>

§

fn sub_assign(&mut self, other: Wrapping<Limb>)

Performs the -= operation. Read more
§

impl<const LIMBS: usize> SubAssign for Wrapping<Uint<LIMBS>>

§

fn sub_assign(&mut self, other: Wrapping<Uint<LIMBS>>)

Performs the -= operation. Read more
§

impl<T> UpperHex for Wrapping<T>
where T: UpperHex,

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl<T> Zero for Wrapping<T>
where T: Zero,

§

const ZERO: Wrapping<T>

The value 0.
§

fn is_zero(&self) -> Choice

Determine if this value is equal to zero. Read more
§

impl<T> Copy for Wrapping<T>
where T: Copy,

§

impl<T> Eq for Wrapping<T>
where T: Eq,

§

impl<T> StructuralPartialEq for Wrapping<T>

Auto Trait Implementations§

§

impl<T> Freeze for Wrapping<T>
where T: Freeze,

§

impl<T> RefUnwindSafe for Wrapping<T>
where T: RefUnwindSafe,

§

impl<T> Send for Wrapping<T>
where T: Send,

§

impl<T> Sync for Wrapping<T>
where T: Sync,

§

impl<T> Unpin for Wrapping<T>
where T: Unpin,

§

impl<T> UnwindSafe for Wrapping<T>
where T: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

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

§

fn vzip(self) -> V

§

impl<T, Rhs, Output> GroupOps<Rhs, Output> for T
where T: Add<Rhs, Output = Output> + Sub<Rhs, Output = Output> + AddAssign<Rhs> + SubAssign<Rhs>,

§

impl<T, Rhs, Output> GroupOpsOwned<Rhs, Output> for T
where T: for<'r> GroupOps<&'r Rhs, Output>,

Source§

impl<T, Rhs> NumAssignOps<Rhs> for T
where T: AddAssign<Rhs> + SubAssign<Rhs> + MulAssign<Rhs> + DivAssign<Rhs> + RemAssign<Rhs>,

Source§

impl<T, Rhs, Output> NumOps<Rhs, Output> for T
where T: Sub<Rhs, Output = Output> + Mul<Rhs, Output = Output> + Div<Rhs, Output = Output> + Add<Rhs, Output = Output> + Rem<Rhs, Output = Output>,

Source§

impl<T, Base> RefNum<Base> for T
where T: NumOps<Base, Base> + for<'r> NumOps<&'r Base, Base>,

§

impl<T, Rhs, Output> ScalarMul<Rhs, Output> for T
where T: Mul<Rhs, Output = Output> + MulAssign<Rhs>,

§

impl<T, Rhs, Output> ScalarMulOwned<Rhs, Output> for T
where T: for<'r> ScalarMul<&'r Rhs, Output>,