Struct soroban_sdk::BigInt
source · [−]#[repr(transparent)]pub struct BigInt(_);
Expand description
BigInt is an arbitrary sized signed integer.
Examples
use soroban_sdk::{BigInt, Env};
let env = Env::default();
let b1 = BigInt::from_u64(&env, u64::MAX);
let b2 = b1 * 3;
let b3 = b2 / 4;
assert_eq!(b3, 13_835_058_055_282_163_711u64)
Implementations
sourceimpl BigInt
impl BigInt
pub fn env(&self) -> &Env
pub fn as_raw(&self) -> &RawVal
pub fn to_raw(&self) -> RawVal
pub fn as_object(&self) -> &Object
pub fn to_object(&self) -> Object
sourcepub fn from_bytes(b: &Bytes) -> BigInt
pub fn from_bytes(b: &Bytes) -> BigInt
sourcepub fn from_slice(env: &Env, bytes: &[u8]) -> BigInt
pub fn from_slice(env: &Env, bytes: &[u8]) -> BigInt
sourcepub fn from_sign_and_bytes(s: &Sign, b: &Bytes) -> BigInt
pub fn from_sign_and_bytes(s: &Sign, b: &Bytes) -> BigInt
Creates a BigInt with a Sign and Bytes.
If the Sign is Sign::NoSign the bytes is ignored and the returned value is zero.
Bytes are in big-endian order.
sourcepub fn gcd(&self, other: BigInt) -> BigInt
pub fn gcd(&self, other: BigInt) -> BigInt
Returns the greatest common divisor of the BigInt and other.
sourcepub fn lcm(&self, other: BigInt) -> BigInt
pub fn lcm(&self, other: BigInt) -> BigInt
Returns the lowest common multiple of the BigInt and other.
Trait Implementations
sourceimpl<'a> AddAssign<&'a BigInt> for &'a mut BigInt
impl<'a> AddAssign<&'a BigInt> for &'a mut BigInt
sourcefn add_assign(&mut self, rhs: &'a BigInt)
fn add_assign(&mut self, rhs: &'a BigInt)
Performs the
+=
operation. Read moresourceimpl<'a> AddAssign<&'a BigInt> for BigInt
impl<'a> AddAssign<&'a BigInt> for BigInt
sourcefn add_assign(&mut self, rhs: &'a BigInt)
fn add_assign(&mut self, rhs: &'a BigInt)
Performs the
+=
operation. Read moresourceimpl<'a> AddAssign<&'a i32> for &'a mut BigInt
impl<'a> AddAssign<&'a i32> for &'a mut BigInt
sourcefn add_assign(&mut self, rhs: &'a i32)
fn add_assign(&mut self, rhs: &'a i32)
Performs the
+=
operation. Read moresourceimpl<'a> AddAssign<&'a i32> for BigInt
impl<'a> AddAssign<&'a i32> for BigInt
sourcefn add_assign(&mut self, rhs: &'a i32)
fn add_assign(&mut self, rhs: &'a i32)
Performs the
+=
operation. Read moresourceimpl<'a> AddAssign<&'a i64> for &'a mut BigInt
impl<'a> AddAssign<&'a i64> for &'a mut BigInt
sourcefn add_assign(&mut self, rhs: &'a i64)
fn add_assign(&mut self, rhs: &'a i64)
Performs the
+=
operation. Read moresourceimpl<'a> AddAssign<&'a i64> for BigInt
impl<'a> AddAssign<&'a i64> for BigInt
sourcefn add_assign(&mut self, rhs: &'a i64)
fn add_assign(&mut self, rhs: &'a i64)
Performs the
+=
operation. Read moresourceimpl<'a> AddAssign<&'a mut BigInt> for BigInt
impl<'a> AddAssign<&'a mut BigInt> for BigInt
sourcefn add_assign(&mut self, rhs: &'a mut BigInt)
fn add_assign(&mut self, rhs: &'a mut BigInt)
Performs the
+=
operation. Read moresourceimpl<'a> AddAssign<&'a mut i32> for BigInt
impl<'a> AddAssign<&'a mut i32> for BigInt
sourcefn add_assign(&mut self, rhs: &'a mut i32)
fn add_assign(&mut self, rhs: &'a mut i32)
Performs the
+=
operation. Read moresourceimpl<'a> AddAssign<&'a mut i64> for BigInt
impl<'a> AddAssign<&'a mut i64> for BigInt
sourcefn add_assign(&mut self, rhs: &'a mut i64)
fn add_assign(&mut self, rhs: &'a mut i64)
Performs the
+=
operation. Read moresourceimpl<'a> AddAssign<&'a mut u32> for BigInt
impl<'a> AddAssign<&'a mut u32> for BigInt
sourcefn add_assign(&mut self, rhs: &'a mut u32)
fn add_assign(&mut self, rhs: &'a mut u32)
Performs the
+=
operation. Read moresourceimpl<'a> AddAssign<&'a mut u64> for BigInt
impl<'a> AddAssign<&'a mut u64> for BigInt
sourcefn add_assign(&mut self, rhs: &'a mut u64)
fn add_assign(&mut self, rhs: &'a mut u64)
Performs the
+=
operation. Read moresourceimpl<'a> AddAssign<&'a u32> for &'a mut BigInt
impl<'a> AddAssign<&'a u32> for &'a mut BigInt
sourcefn add_assign(&mut self, rhs: &'a u32)
fn add_assign(&mut self, rhs: &'a u32)
Performs the
+=
operation. Read moresourceimpl<'a> AddAssign<&'a u32> for BigInt
impl<'a> AddAssign<&'a u32> for BigInt
sourcefn add_assign(&mut self, rhs: &'a u32)
fn add_assign(&mut self, rhs: &'a u32)
Performs the
+=
operation. Read moresourceimpl<'a> AddAssign<&'a u64> for &'a mut BigInt
impl<'a> AddAssign<&'a u64> for &'a mut BigInt
sourcefn add_assign(&mut self, rhs: &'a u64)
fn add_assign(&mut self, rhs: &'a u64)
Performs the
+=
operation. Read moresourceimpl<'a> AddAssign<&'a u64> for BigInt
impl<'a> AddAssign<&'a u64> for BigInt
sourcefn add_assign(&mut self, rhs: &'a u64)
fn add_assign(&mut self, rhs: &'a u64)
Performs the
+=
operation. Read moresourceimpl<'a> AddAssign<BigInt> for &'a mut BigInt
impl<'a> AddAssign<BigInt> for &'a mut BigInt
sourcefn add_assign(&mut self, rhs: BigInt)
fn add_assign(&mut self, rhs: BigInt)
Performs the
+=
operation. Read moresourceimpl AddAssign<BigInt> for BigInt
impl AddAssign<BigInt> for BigInt
sourcefn add_assign(&mut self, rhs: Self)
fn add_assign(&mut self, rhs: Self)
Performs the
+=
operation. Read moresourceimpl<'a> AddAssign<i32> for &'a mut BigInt
impl<'a> AddAssign<i32> for &'a mut BigInt
sourcefn add_assign(&mut self, rhs: i32)
fn add_assign(&mut self, rhs: i32)
Performs the
+=
operation. Read moresourceimpl AddAssign<i32> for BigInt
impl AddAssign<i32> for BigInt
sourcefn add_assign(&mut self, rhs: i32)
fn add_assign(&mut self, rhs: i32)
Performs the
+=
operation. Read moresourceimpl<'a> AddAssign<i64> for &'a mut BigInt
impl<'a> AddAssign<i64> for &'a mut BigInt
sourcefn add_assign(&mut self, rhs: i64)
fn add_assign(&mut self, rhs: i64)
Performs the
+=
operation. Read moresourceimpl AddAssign<i64> for BigInt
impl AddAssign<i64> for BigInt
sourcefn add_assign(&mut self, rhs: i64)
fn add_assign(&mut self, rhs: i64)
Performs the
+=
operation. Read moresourceimpl<'a> AddAssign<u32> for &'a mut BigInt
impl<'a> AddAssign<u32> for &'a mut BigInt
sourcefn add_assign(&mut self, rhs: u32)
fn add_assign(&mut self, rhs: u32)
Performs the
+=
operation. Read moresourceimpl AddAssign<u32> for BigInt
impl AddAssign<u32> for BigInt
sourcefn add_assign(&mut self, rhs: u32)
fn add_assign(&mut self, rhs: u32)
Performs the
+=
operation. Read moresourceimpl<'a> AddAssign<u64> for &'a mut BigInt
impl<'a> AddAssign<u64> for &'a mut BigInt
sourcefn add_assign(&mut self, rhs: u64)
fn add_assign(&mut self, rhs: u64)
Performs the
+=
operation. Read moresourceimpl AddAssign<u64> for BigInt
impl AddAssign<u64> for BigInt
sourcefn add_assign(&mut self, rhs: u64)
fn add_assign(&mut self, rhs: u64)
Performs the
+=
operation. Read moresourceimpl<'a> BitAndAssign<&'a BigInt> for &'a mut BigInt
impl<'a> BitAndAssign<&'a BigInt> for &'a mut BigInt
sourcefn bitand_assign(&mut self, rhs: &'a BigInt)
fn bitand_assign(&mut self, rhs: &'a BigInt)
Performs the
&=
operation. Read moresourceimpl<'a> BitAndAssign<&'a BigInt> for BigInt
impl<'a> BitAndAssign<&'a BigInt> for BigInt
sourcefn bitand_assign(&mut self, rhs: &'a BigInt)
fn bitand_assign(&mut self, rhs: &'a BigInt)
Performs the
&=
operation. Read moresourceimpl<'a> BitAndAssign<&'a i32> for &'a mut BigInt
impl<'a> BitAndAssign<&'a i32> for &'a mut BigInt
sourcefn bitand_assign(&mut self, rhs: &'a i32)
fn bitand_assign(&mut self, rhs: &'a i32)
Performs the
&=
operation. Read moresourceimpl<'a> BitAndAssign<&'a i32> for BigInt
impl<'a> BitAndAssign<&'a i32> for BigInt
sourcefn bitand_assign(&mut self, rhs: &'a i32)
fn bitand_assign(&mut self, rhs: &'a i32)
Performs the
&=
operation. Read moresourceimpl<'a> BitAndAssign<&'a i64> for &'a mut BigInt
impl<'a> BitAndAssign<&'a i64> for &'a mut BigInt
sourcefn bitand_assign(&mut self, rhs: &'a i64)
fn bitand_assign(&mut self, rhs: &'a i64)
Performs the
&=
operation. Read moresourceimpl<'a> BitAndAssign<&'a i64> for BigInt
impl<'a> BitAndAssign<&'a i64> for BigInt
sourcefn bitand_assign(&mut self, rhs: &'a i64)
fn bitand_assign(&mut self, rhs: &'a i64)
Performs the
&=
operation. Read moresourceimpl<'a> BitAndAssign<&'a mut BigInt> for BigInt
impl<'a> BitAndAssign<&'a mut BigInt> for BigInt
sourcefn bitand_assign(&mut self, rhs: &'a mut BigInt)
fn bitand_assign(&mut self, rhs: &'a mut BigInt)
Performs the
&=
operation. Read moresourceimpl<'a> BitAndAssign<&'a mut i32> for BigInt
impl<'a> BitAndAssign<&'a mut i32> for BigInt
sourcefn bitand_assign(&mut self, rhs: &'a mut i32)
fn bitand_assign(&mut self, rhs: &'a mut i32)
Performs the
&=
operation. Read moresourceimpl<'a> BitAndAssign<&'a mut i64> for BigInt
impl<'a> BitAndAssign<&'a mut i64> for BigInt
sourcefn bitand_assign(&mut self, rhs: &'a mut i64)
fn bitand_assign(&mut self, rhs: &'a mut i64)
Performs the
&=
operation. Read moresourceimpl<'a> BitAndAssign<&'a mut u32> for BigInt
impl<'a> BitAndAssign<&'a mut u32> for BigInt
sourcefn bitand_assign(&mut self, rhs: &'a mut u32)
fn bitand_assign(&mut self, rhs: &'a mut u32)
Performs the
&=
operation. Read moresourceimpl<'a> BitAndAssign<&'a mut u64> for BigInt
impl<'a> BitAndAssign<&'a mut u64> for BigInt
sourcefn bitand_assign(&mut self, rhs: &'a mut u64)
fn bitand_assign(&mut self, rhs: &'a mut u64)
Performs the
&=
operation. Read moresourceimpl<'a> BitAndAssign<&'a u32> for &'a mut BigInt
impl<'a> BitAndAssign<&'a u32> for &'a mut BigInt
sourcefn bitand_assign(&mut self, rhs: &'a u32)
fn bitand_assign(&mut self, rhs: &'a u32)
Performs the
&=
operation. Read moresourceimpl<'a> BitAndAssign<&'a u32> for BigInt
impl<'a> BitAndAssign<&'a u32> for BigInt
sourcefn bitand_assign(&mut self, rhs: &'a u32)
fn bitand_assign(&mut self, rhs: &'a u32)
Performs the
&=
operation. Read moresourceimpl<'a> BitAndAssign<&'a u64> for &'a mut BigInt
impl<'a> BitAndAssign<&'a u64> for &'a mut BigInt
sourcefn bitand_assign(&mut self, rhs: &'a u64)
fn bitand_assign(&mut self, rhs: &'a u64)
Performs the
&=
operation. Read moresourceimpl<'a> BitAndAssign<&'a u64> for BigInt
impl<'a> BitAndAssign<&'a u64> for BigInt
sourcefn bitand_assign(&mut self, rhs: &'a u64)
fn bitand_assign(&mut self, rhs: &'a u64)
Performs the
&=
operation. Read moresourceimpl<'a> BitAndAssign<BigInt> for &'a mut BigInt
impl<'a> BitAndAssign<BigInt> for &'a mut BigInt
sourcefn bitand_assign(&mut self, rhs: BigInt)
fn bitand_assign(&mut self, rhs: BigInt)
Performs the
&=
operation. Read moresourceimpl BitAndAssign<BigInt> for BigInt
impl BitAndAssign<BigInt> for BigInt
sourcefn bitand_assign(&mut self, rhs: Self)
fn bitand_assign(&mut self, rhs: Self)
Performs the
&=
operation. Read moresourceimpl<'a> BitAndAssign<i32> for &'a mut BigInt
impl<'a> BitAndAssign<i32> for &'a mut BigInt
sourcefn bitand_assign(&mut self, rhs: i32)
fn bitand_assign(&mut self, rhs: i32)
Performs the
&=
operation. Read moresourceimpl BitAndAssign<i32> for BigInt
impl BitAndAssign<i32> for BigInt
sourcefn bitand_assign(&mut self, rhs: i32)
fn bitand_assign(&mut self, rhs: i32)
Performs the
&=
operation. Read moresourceimpl<'a> BitAndAssign<i64> for &'a mut BigInt
impl<'a> BitAndAssign<i64> for &'a mut BigInt
sourcefn bitand_assign(&mut self, rhs: i64)
fn bitand_assign(&mut self, rhs: i64)
Performs the
&=
operation. Read moresourceimpl BitAndAssign<i64> for BigInt
impl BitAndAssign<i64> for BigInt
sourcefn bitand_assign(&mut self, rhs: i64)
fn bitand_assign(&mut self, rhs: i64)
Performs the
&=
operation. Read moresourceimpl<'a> BitAndAssign<u32> for &'a mut BigInt
impl<'a> BitAndAssign<u32> for &'a mut BigInt
sourcefn bitand_assign(&mut self, rhs: u32)
fn bitand_assign(&mut self, rhs: u32)
Performs the
&=
operation. Read moresourceimpl BitAndAssign<u32> for BigInt
impl BitAndAssign<u32> for BigInt
sourcefn bitand_assign(&mut self, rhs: u32)
fn bitand_assign(&mut self, rhs: u32)
Performs the
&=
operation. Read moresourceimpl<'a> BitAndAssign<u64> for &'a mut BigInt
impl<'a> BitAndAssign<u64> for &'a mut BigInt
sourcefn bitand_assign(&mut self, rhs: u64)
fn bitand_assign(&mut self, rhs: u64)
Performs the
&=
operation. Read moresourceimpl BitAndAssign<u64> for BigInt
impl BitAndAssign<u64> for BigInt
sourcefn bitand_assign(&mut self, rhs: u64)
fn bitand_assign(&mut self, rhs: u64)
Performs the
&=
operation. Read moresourceimpl<'a> BitOrAssign<&'a BigInt> for &'a mut BigInt
impl<'a> BitOrAssign<&'a BigInt> for &'a mut BigInt
sourcefn bitor_assign(&mut self, rhs: &'a BigInt)
fn bitor_assign(&mut self, rhs: &'a BigInt)
Performs the
|=
operation. Read moresourceimpl<'a> BitOrAssign<&'a BigInt> for BigInt
impl<'a> BitOrAssign<&'a BigInt> for BigInt
sourcefn bitor_assign(&mut self, rhs: &'a BigInt)
fn bitor_assign(&mut self, rhs: &'a BigInt)
Performs the
|=
operation. Read moresourceimpl<'a> BitOrAssign<&'a i32> for &'a mut BigInt
impl<'a> BitOrAssign<&'a i32> for &'a mut BigInt
sourcefn bitor_assign(&mut self, rhs: &'a i32)
fn bitor_assign(&mut self, rhs: &'a i32)
Performs the
|=
operation. Read moresourceimpl<'a> BitOrAssign<&'a i32> for BigInt
impl<'a> BitOrAssign<&'a i32> for BigInt
sourcefn bitor_assign(&mut self, rhs: &'a i32)
fn bitor_assign(&mut self, rhs: &'a i32)
Performs the
|=
operation. Read moresourceimpl<'a> BitOrAssign<&'a i64> for &'a mut BigInt
impl<'a> BitOrAssign<&'a i64> for &'a mut BigInt
sourcefn bitor_assign(&mut self, rhs: &'a i64)
fn bitor_assign(&mut self, rhs: &'a i64)
Performs the
|=
operation. Read moresourceimpl<'a> BitOrAssign<&'a i64> for BigInt
impl<'a> BitOrAssign<&'a i64> for BigInt
sourcefn bitor_assign(&mut self, rhs: &'a i64)
fn bitor_assign(&mut self, rhs: &'a i64)
Performs the
|=
operation. Read moresourceimpl<'a> BitOrAssign<&'a mut BigInt> for BigInt
impl<'a> BitOrAssign<&'a mut BigInt> for BigInt
sourcefn bitor_assign(&mut self, rhs: &'a mut BigInt)
fn bitor_assign(&mut self, rhs: &'a mut BigInt)
Performs the
|=
operation. Read moresourceimpl<'a> BitOrAssign<&'a mut i32> for BigInt
impl<'a> BitOrAssign<&'a mut i32> for BigInt
sourcefn bitor_assign(&mut self, rhs: &'a mut i32)
fn bitor_assign(&mut self, rhs: &'a mut i32)
Performs the
|=
operation. Read moresourceimpl<'a> BitOrAssign<&'a mut i64> for BigInt
impl<'a> BitOrAssign<&'a mut i64> for BigInt
sourcefn bitor_assign(&mut self, rhs: &'a mut i64)
fn bitor_assign(&mut self, rhs: &'a mut i64)
Performs the
|=
operation. Read moresourceimpl<'a> BitOrAssign<&'a mut u32> for BigInt
impl<'a> BitOrAssign<&'a mut u32> for BigInt
sourcefn bitor_assign(&mut self, rhs: &'a mut u32)
fn bitor_assign(&mut self, rhs: &'a mut u32)
Performs the
|=
operation. Read moresourceimpl<'a> BitOrAssign<&'a mut u64> for BigInt
impl<'a> BitOrAssign<&'a mut u64> for BigInt
sourcefn bitor_assign(&mut self, rhs: &'a mut u64)
fn bitor_assign(&mut self, rhs: &'a mut u64)
Performs the
|=
operation. Read moresourceimpl<'a> BitOrAssign<&'a u32> for &'a mut BigInt
impl<'a> BitOrAssign<&'a u32> for &'a mut BigInt
sourcefn bitor_assign(&mut self, rhs: &'a u32)
fn bitor_assign(&mut self, rhs: &'a u32)
Performs the
|=
operation. Read moresourceimpl<'a> BitOrAssign<&'a u32> for BigInt
impl<'a> BitOrAssign<&'a u32> for BigInt
sourcefn bitor_assign(&mut self, rhs: &'a u32)
fn bitor_assign(&mut self, rhs: &'a u32)
Performs the
|=
operation. Read moresourceimpl<'a> BitOrAssign<&'a u64> for &'a mut BigInt
impl<'a> BitOrAssign<&'a u64> for &'a mut BigInt
sourcefn bitor_assign(&mut self, rhs: &'a u64)
fn bitor_assign(&mut self, rhs: &'a u64)
Performs the
|=
operation. Read moresourceimpl<'a> BitOrAssign<&'a u64> for BigInt
impl<'a> BitOrAssign<&'a u64> for BigInt
sourcefn bitor_assign(&mut self, rhs: &'a u64)
fn bitor_assign(&mut self, rhs: &'a u64)
Performs the
|=
operation. Read moresourceimpl<'a> BitOrAssign<BigInt> for &'a mut BigInt
impl<'a> BitOrAssign<BigInt> for &'a mut BigInt
sourcefn bitor_assign(&mut self, rhs: BigInt)
fn bitor_assign(&mut self, rhs: BigInt)
Performs the
|=
operation. Read moresourceimpl BitOrAssign<BigInt> for BigInt
impl BitOrAssign<BigInt> for BigInt
sourcefn bitor_assign(&mut self, rhs: Self)
fn bitor_assign(&mut self, rhs: Self)
Performs the
|=
operation. Read moresourceimpl<'a> BitOrAssign<i32> for &'a mut BigInt
impl<'a> BitOrAssign<i32> for &'a mut BigInt
sourcefn bitor_assign(&mut self, rhs: i32)
fn bitor_assign(&mut self, rhs: i32)
Performs the
|=
operation. Read moresourceimpl BitOrAssign<i32> for BigInt
impl BitOrAssign<i32> for BigInt
sourcefn bitor_assign(&mut self, rhs: i32)
fn bitor_assign(&mut self, rhs: i32)
Performs the
|=
operation. Read moresourceimpl<'a> BitOrAssign<i64> for &'a mut BigInt
impl<'a> BitOrAssign<i64> for &'a mut BigInt
sourcefn bitor_assign(&mut self, rhs: i64)
fn bitor_assign(&mut self, rhs: i64)
Performs the
|=
operation. Read moresourceimpl BitOrAssign<i64> for BigInt
impl BitOrAssign<i64> for BigInt
sourcefn bitor_assign(&mut self, rhs: i64)
fn bitor_assign(&mut self, rhs: i64)
Performs the
|=
operation. Read moresourceimpl<'a> BitOrAssign<u32> for &'a mut BigInt
impl<'a> BitOrAssign<u32> for &'a mut BigInt
sourcefn bitor_assign(&mut self, rhs: u32)
fn bitor_assign(&mut self, rhs: u32)
Performs the
|=
operation. Read moresourceimpl BitOrAssign<u32> for BigInt
impl BitOrAssign<u32> for BigInt
sourcefn bitor_assign(&mut self, rhs: u32)
fn bitor_assign(&mut self, rhs: u32)
Performs the
|=
operation. Read moresourceimpl<'a> BitOrAssign<u64> for &'a mut BigInt
impl<'a> BitOrAssign<u64> for &'a mut BigInt
sourcefn bitor_assign(&mut self, rhs: u64)
fn bitor_assign(&mut self, rhs: u64)
Performs the
|=
operation. Read moresourceimpl BitOrAssign<u64> for BigInt
impl BitOrAssign<u64> for BigInt
sourcefn bitor_assign(&mut self, rhs: u64)
fn bitor_assign(&mut self, rhs: u64)
Performs the
|=
operation. Read moresourceimpl<'a> BitXorAssign<&'a BigInt> for &'a mut BigInt
impl<'a> BitXorAssign<&'a BigInt> for &'a mut BigInt
sourcefn bitxor_assign(&mut self, rhs: &'a BigInt)
fn bitxor_assign(&mut self, rhs: &'a BigInt)
Performs the
^=
operation. Read moresourceimpl<'a> BitXorAssign<&'a BigInt> for BigInt
impl<'a> BitXorAssign<&'a BigInt> for BigInt
sourcefn bitxor_assign(&mut self, rhs: &'a BigInt)
fn bitxor_assign(&mut self, rhs: &'a BigInt)
Performs the
^=
operation. Read moresourceimpl<'a> BitXorAssign<&'a i32> for &'a mut BigInt
impl<'a> BitXorAssign<&'a i32> for &'a mut BigInt
sourcefn bitxor_assign(&mut self, rhs: &'a i32)
fn bitxor_assign(&mut self, rhs: &'a i32)
Performs the
^=
operation. Read moresourceimpl<'a> BitXorAssign<&'a i32> for BigInt
impl<'a> BitXorAssign<&'a i32> for BigInt
sourcefn bitxor_assign(&mut self, rhs: &'a i32)
fn bitxor_assign(&mut self, rhs: &'a i32)
Performs the
^=
operation. Read moresourceimpl<'a> BitXorAssign<&'a i64> for &'a mut BigInt
impl<'a> BitXorAssign<&'a i64> for &'a mut BigInt
sourcefn bitxor_assign(&mut self, rhs: &'a i64)
fn bitxor_assign(&mut self, rhs: &'a i64)
Performs the
^=
operation. Read moresourceimpl<'a> BitXorAssign<&'a i64> for BigInt
impl<'a> BitXorAssign<&'a i64> for BigInt
sourcefn bitxor_assign(&mut self, rhs: &'a i64)
fn bitxor_assign(&mut self, rhs: &'a i64)
Performs the
^=
operation. Read moresourceimpl<'a> BitXorAssign<&'a mut BigInt> for BigInt
impl<'a> BitXorAssign<&'a mut BigInt> for BigInt
sourcefn bitxor_assign(&mut self, rhs: &'a mut BigInt)
fn bitxor_assign(&mut self, rhs: &'a mut BigInt)
Performs the
^=
operation. Read moresourceimpl<'a> BitXorAssign<&'a mut i32> for BigInt
impl<'a> BitXorAssign<&'a mut i32> for BigInt
sourcefn bitxor_assign(&mut self, rhs: &'a mut i32)
fn bitxor_assign(&mut self, rhs: &'a mut i32)
Performs the
^=
operation. Read moresourceimpl<'a> BitXorAssign<&'a mut i64> for BigInt
impl<'a> BitXorAssign<&'a mut i64> for BigInt
sourcefn bitxor_assign(&mut self, rhs: &'a mut i64)
fn bitxor_assign(&mut self, rhs: &'a mut i64)
Performs the
^=
operation. Read moresourceimpl<'a> BitXorAssign<&'a mut u32> for BigInt
impl<'a> BitXorAssign<&'a mut u32> for BigInt
sourcefn bitxor_assign(&mut self, rhs: &'a mut u32)
fn bitxor_assign(&mut self, rhs: &'a mut u32)
Performs the
^=
operation. Read moresourceimpl<'a> BitXorAssign<&'a mut u64> for BigInt
impl<'a> BitXorAssign<&'a mut u64> for BigInt
sourcefn bitxor_assign(&mut self, rhs: &'a mut u64)
fn bitxor_assign(&mut self, rhs: &'a mut u64)
Performs the
^=
operation. Read moresourceimpl<'a> BitXorAssign<&'a u32> for &'a mut BigInt
impl<'a> BitXorAssign<&'a u32> for &'a mut BigInt
sourcefn bitxor_assign(&mut self, rhs: &'a u32)
fn bitxor_assign(&mut self, rhs: &'a u32)
Performs the
^=
operation. Read moresourceimpl<'a> BitXorAssign<&'a u32> for BigInt
impl<'a> BitXorAssign<&'a u32> for BigInt
sourcefn bitxor_assign(&mut self, rhs: &'a u32)
fn bitxor_assign(&mut self, rhs: &'a u32)
Performs the
^=
operation. Read moresourceimpl<'a> BitXorAssign<&'a u64> for &'a mut BigInt
impl<'a> BitXorAssign<&'a u64> for &'a mut BigInt
sourcefn bitxor_assign(&mut self, rhs: &'a u64)
fn bitxor_assign(&mut self, rhs: &'a u64)
Performs the
^=
operation. Read moresourceimpl<'a> BitXorAssign<&'a u64> for BigInt
impl<'a> BitXorAssign<&'a u64> for BigInt
sourcefn bitxor_assign(&mut self, rhs: &'a u64)
fn bitxor_assign(&mut self, rhs: &'a u64)
Performs the
^=
operation. Read moresourceimpl<'a> BitXorAssign<BigInt> for &'a mut BigInt
impl<'a> BitXorAssign<BigInt> for &'a mut BigInt
sourcefn bitxor_assign(&mut self, rhs: BigInt)
fn bitxor_assign(&mut self, rhs: BigInt)
Performs the
^=
operation. Read moresourceimpl BitXorAssign<BigInt> for BigInt
impl BitXorAssign<BigInt> for BigInt
sourcefn bitxor_assign(&mut self, rhs: Self)
fn bitxor_assign(&mut self, rhs: Self)
Performs the
^=
operation. Read moresourceimpl<'a> BitXorAssign<i32> for &'a mut BigInt
impl<'a> BitXorAssign<i32> for &'a mut BigInt
sourcefn bitxor_assign(&mut self, rhs: i32)
fn bitxor_assign(&mut self, rhs: i32)
Performs the
^=
operation. Read moresourceimpl BitXorAssign<i32> for BigInt
impl BitXorAssign<i32> for BigInt
sourcefn bitxor_assign(&mut self, rhs: i32)
fn bitxor_assign(&mut self, rhs: i32)
Performs the
^=
operation. Read moresourceimpl<'a> BitXorAssign<i64> for &'a mut BigInt
impl<'a> BitXorAssign<i64> for &'a mut BigInt
sourcefn bitxor_assign(&mut self, rhs: i64)
fn bitxor_assign(&mut self, rhs: i64)
Performs the
^=
operation. Read moresourceimpl BitXorAssign<i64> for BigInt
impl BitXorAssign<i64> for BigInt
sourcefn bitxor_assign(&mut self, rhs: i64)
fn bitxor_assign(&mut self, rhs: i64)
Performs the
^=
operation. Read moresourceimpl<'a> BitXorAssign<u32> for &'a mut BigInt
impl<'a> BitXorAssign<u32> for &'a mut BigInt
sourcefn bitxor_assign(&mut self, rhs: u32)
fn bitxor_assign(&mut self, rhs: u32)
Performs the
^=
operation. Read moresourceimpl BitXorAssign<u32> for BigInt
impl BitXorAssign<u32> for BigInt
sourcefn bitxor_assign(&mut self, rhs: u32)
fn bitxor_assign(&mut self, rhs: u32)
Performs the
^=
operation. Read moresourceimpl<'a> BitXorAssign<u64> for &'a mut BigInt
impl<'a> BitXorAssign<u64> for &'a mut BigInt
sourcefn bitxor_assign(&mut self, rhs: u64)
fn bitxor_assign(&mut self, rhs: u64)
Performs the
^=
operation. Read moresourceimpl BitXorAssign<u64> for BigInt
impl BitXorAssign<u64> for BigInt
sourcefn bitxor_assign(&mut self, rhs: u64)
fn bitxor_assign(&mut self, rhs: u64)
Performs the
^=
operation. Read moresourceimpl<'a> DivAssign<&'a BigInt> for &'a mut BigInt
impl<'a> DivAssign<&'a BigInt> for &'a mut BigInt
sourcefn div_assign(&mut self, rhs: &'a BigInt)
fn div_assign(&mut self, rhs: &'a BigInt)
Performs the
/=
operation. Read moresourceimpl<'a> DivAssign<&'a BigInt> for BigInt
impl<'a> DivAssign<&'a BigInt> for BigInt
sourcefn div_assign(&mut self, rhs: &'a BigInt)
fn div_assign(&mut self, rhs: &'a BigInt)
Performs the
/=
operation. Read moresourceimpl<'a> DivAssign<&'a i32> for &'a mut BigInt
impl<'a> DivAssign<&'a i32> for &'a mut BigInt
sourcefn div_assign(&mut self, rhs: &'a i32)
fn div_assign(&mut self, rhs: &'a i32)
Performs the
/=
operation. Read moresourceimpl<'a> DivAssign<&'a i32> for BigInt
impl<'a> DivAssign<&'a i32> for BigInt
sourcefn div_assign(&mut self, rhs: &'a i32)
fn div_assign(&mut self, rhs: &'a i32)
Performs the
/=
operation. Read moresourceimpl<'a> DivAssign<&'a i64> for &'a mut BigInt
impl<'a> DivAssign<&'a i64> for &'a mut BigInt
sourcefn div_assign(&mut self, rhs: &'a i64)
fn div_assign(&mut self, rhs: &'a i64)
Performs the
/=
operation. Read moresourceimpl<'a> DivAssign<&'a i64> for BigInt
impl<'a> DivAssign<&'a i64> for BigInt
sourcefn div_assign(&mut self, rhs: &'a i64)
fn div_assign(&mut self, rhs: &'a i64)
Performs the
/=
operation. Read moresourceimpl<'a> DivAssign<&'a mut BigInt> for BigInt
impl<'a> DivAssign<&'a mut BigInt> for BigInt
sourcefn div_assign(&mut self, rhs: &'a mut BigInt)
fn div_assign(&mut self, rhs: &'a mut BigInt)
Performs the
/=
operation. Read moresourceimpl<'a> DivAssign<&'a mut i32> for BigInt
impl<'a> DivAssign<&'a mut i32> for BigInt
sourcefn div_assign(&mut self, rhs: &'a mut i32)
fn div_assign(&mut self, rhs: &'a mut i32)
Performs the
/=
operation. Read moresourceimpl<'a> DivAssign<&'a mut i64> for BigInt
impl<'a> DivAssign<&'a mut i64> for BigInt
sourcefn div_assign(&mut self, rhs: &'a mut i64)
fn div_assign(&mut self, rhs: &'a mut i64)
Performs the
/=
operation. Read moresourceimpl<'a> DivAssign<&'a mut u32> for BigInt
impl<'a> DivAssign<&'a mut u32> for BigInt
sourcefn div_assign(&mut self, rhs: &'a mut u32)
fn div_assign(&mut self, rhs: &'a mut u32)
Performs the
/=
operation. Read moresourceimpl<'a> DivAssign<&'a mut u64> for BigInt
impl<'a> DivAssign<&'a mut u64> for BigInt
sourcefn div_assign(&mut self, rhs: &'a mut u64)
fn div_assign(&mut self, rhs: &'a mut u64)
Performs the
/=
operation. Read moresourceimpl<'a> DivAssign<&'a u32> for &'a mut BigInt
impl<'a> DivAssign<&'a u32> for &'a mut BigInt
sourcefn div_assign(&mut self, rhs: &'a u32)
fn div_assign(&mut self, rhs: &'a u32)
Performs the
/=
operation. Read moresourceimpl<'a> DivAssign<&'a u32> for BigInt
impl<'a> DivAssign<&'a u32> for BigInt
sourcefn div_assign(&mut self, rhs: &'a u32)
fn div_assign(&mut self, rhs: &'a u32)
Performs the
/=
operation. Read moresourceimpl<'a> DivAssign<&'a u64> for &'a mut BigInt
impl<'a> DivAssign<&'a u64> for &'a mut BigInt
sourcefn div_assign(&mut self, rhs: &'a u64)
fn div_assign(&mut self, rhs: &'a u64)
Performs the
/=
operation. Read moresourceimpl<'a> DivAssign<&'a u64> for BigInt
impl<'a> DivAssign<&'a u64> for BigInt
sourcefn div_assign(&mut self, rhs: &'a u64)
fn div_assign(&mut self, rhs: &'a u64)
Performs the
/=
operation. Read moresourceimpl<'a> DivAssign<BigInt> for &'a mut BigInt
impl<'a> DivAssign<BigInt> for &'a mut BigInt
sourcefn div_assign(&mut self, rhs: BigInt)
fn div_assign(&mut self, rhs: BigInt)
Performs the
/=
operation. Read moresourceimpl DivAssign<BigInt> for BigInt
impl DivAssign<BigInt> for BigInt
sourcefn div_assign(&mut self, rhs: Self)
fn div_assign(&mut self, rhs: Self)
Performs the
/=
operation. Read moresourceimpl<'a> DivAssign<i32> for &'a mut BigInt
impl<'a> DivAssign<i32> for &'a mut BigInt
sourcefn div_assign(&mut self, rhs: i32)
fn div_assign(&mut self, rhs: i32)
Performs the
/=
operation. Read moresourceimpl DivAssign<i32> for BigInt
impl DivAssign<i32> for BigInt
sourcefn div_assign(&mut self, rhs: i32)
fn div_assign(&mut self, rhs: i32)
Performs the
/=
operation. Read moresourceimpl<'a> DivAssign<i64> for &'a mut BigInt
impl<'a> DivAssign<i64> for &'a mut BigInt
sourcefn div_assign(&mut self, rhs: i64)
fn div_assign(&mut self, rhs: i64)
Performs the
/=
operation. Read moresourceimpl DivAssign<i64> for BigInt
impl DivAssign<i64> for BigInt
sourcefn div_assign(&mut self, rhs: i64)
fn div_assign(&mut self, rhs: i64)
Performs the
/=
operation. Read moresourceimpl<'a> DivAssign<u32> for &'a mut BigInt
impl<'a> DivAssign<u32> for &'a mut BigInt
sourcefn div_assign(&mut self, rhs: u32)
fn div_assign(&mut self, rhs: u32)
Performs the
/=
operation. Read moresourceimpl DivAssign<u32> for BigInt
impl DivAssign<u32> for BigInt
sourcefn div_assign(&mut self, rhs: u32)
fn div_assign(&mut self, rhs: u32)
Performs the
/=
operation. Read moresourceimpl<'a> DivAssign<u64> for &'a mut BigInt
impl<'a> DivAssign<u64> for &'a mut BigInt
sourcefn div_assign(&mut self, rhs: u64)
fn div_assign(&mut self, rhs: u64)
Performs the
/=
operation. Read moresourceimpl DivAssign<u64> for BigInt
impl DivAssign<u64> for BigInt
sourcefn div_assign(&mut self, rhs: u64)
fn div_assign(&mut self, rhs: u64)
Performs the
/=
operation. Read moresourceimpl<'a> MulAssign<&'a BigInt> for &'a mut BigInt
impl<'a> MulAssign<&'a BigInt> for &'a mut BigInt
sourcefn mul_assign(&mut self, rhs: &'a BigInt)
fn mul_assign(&mut self, rhs: &'a BigInt)
Performs the
*=
operation. Read moresourceimpl<'a> MulAssign<&'a BigInt> for BigInt
impl<'a> MulAssign<&'a BigInt> for BigInt
sourcefn mul_assign(&mut self, rhs: &'a BigInt)
fn mul_assign(&mut self, rhs: &'a BigInt)
Performs the
*=
operation. Read moresourceimpl<'a> MulAssign<&'a i32> for &'a mut BigInt
impl<'a> MulAssign<&'a i32> for &'a mut BigInt
sourcefn mul_assign(&mut self, rhs: &'a i32)
fn mul_assign(&mut self, rhs: &'a i32)
Performs the
*=
operation. Read moresourceimpl<'a> MulAssign<&'a i32> for BigInt
impl<'a> MulAssign<&'a i32> for BigInt
sourcefn mul_assign(&mut self, rhs: &'a i32)
fn mul_assign(&mut self, rhs: &'a i32)
Performs the
*=
operation. Read moresourceimpl<'a> MulAssign<&'a i64> for &'a mut BigInt
impl<'a> MulAssign<&'a i64> for &'a mut BigInt
sourcefn mul_assign(&mut self, rhs: &'a i64)
fn mul_assign(&mut self, rhs: &'a i64)
Performs the
*=
operation. Read moresourceimpl<'a> MulAssign<&'a i64> for BigInt
impl<'a> MulAssign<&'a i64> for BigInt
sourcefn mul_assign(&mut self, rhs: &'a i64)
fn mul_assign(&mut self, rhs: &'a i64)
Performs the
*=
operation. Read moresourceimpl<'a> MulAssign<&'a mut BigInt> for BigInt
impl<'a> MulAssign<&'a mut BigInt> for BigInt
sourcefn mul_assign(&mut self, rhs: &'a mut BigInt)
fn mul_assign(&mut self, rhs: &'a mut BigInt)
Performs the
*=
operation. Read moresourceimpl<'a> MulAssign<&'a mut i32> for BigInt
impl<'a> MulAssign<&'a mut i32> for BigInt
sourcefn mul_assign(&mut self, rhs: &'a mut i32)
fn mul_assign(&mut self, rhs: &'a mut i32)
Performs the
*=
operation. Read moresourceimpl<'a> MulAssign<&'a mut i64> for BigInt
impl<'a> MulAssign<&'a mut i64> for BigInt
sourcefn mul_assign(&mut self, rhs: &'a mut i64)
fn mul_assign(&mut self, rhs: &'a mut i64)
Performs the
*=
operation. Read moresourceimpl<'a> MulAssign<&'a mut u32> for BigInt
impl<'a> MulAssign<&'a mut u32> for BigInt
sourcefn mul_assign(&mut self, rhs: &'a mut u32)
fn mul_assign(&mut self, rhs: &'a mut u32)
Performs the
*=
operation. Read moresourceimpl<'a> MulAssign<&'a mut u64> for BigInt
impl<'a> MulAssign<&'a mut u64> for BigInt
sourcefn mul_assign(&mut self, rhs: &'a mut u64)
fn mul_assign(&mut self, rhs: &'a mut u64)
Performs the
*=
operation. Read moresourceimpl<'a> MulAssign<&'a u32> for &'a mut BigInt
impl<'a> MulAssign<&'a u32> for &'a mut BigInt
sourcefn mul_assign(&mut self, rhs: &'a u32)
fn mul_assign(&mut self, rhs: &'a u32)
Performs the
*=
operation. Read moresourceimpl<'a> MulAssign<&'a u32> for BigInt
impl<'a> MulAssign<&'a u32> for BigInt
sourcefn mul_assign(&mut self, rhs: &'a u32)
fn mul_assign(&mut self, rhs: &'a u32)
Performs the
*=
operation. Read moresourceimpl<'a> MulAssign<&'a u64> for &'a mut BigInt
impl<'a> MulAssign<&'a u64> for &'a mut BigInt
sourcefn mul_assign(&mut self, rhs: &'a u64)
fn mul_assign(&mut self, rhs: &'a u64)
Performs the
*=
operation. Read moresourceimpl<'a> MulAssign<&'a u64> for BigInt
impl<'a> MulAssign<&'a u64> for BigInt
sourcefn mul_assign(&mut self, rhs: &'a u64)
fn mul_assign(&mut self, rhs: &'a u64)
Performs the
*=
operation. Read moresourceimpl<'a> MulAssign<BigInt> for &'a mut BigInt
impl<'a> MulAssign<BigInt> for &'a mut BigInt
sourcefn mul_assign(&mut self, rhs: BigInt)
fn mul_assign(&mut self, rhs: BigInt)
Performs the
*=
operation. Read moresourceimpl MulAssign<BigInt> for BigInt
impl MulAssign<BigInt> for BigInt
sourcefn mul_assign(&mut self, rhs: Self)
fn mul_assign(&mut self, rhs: Self)
Performs the
*=
operation. Read moresourceimpl<'a> MulAssign<i32> for &'a mut BigInt
impl<'a> MulAssign<i32> for &'a mut BigInt
sourcefn mul_assign(&mut self, rhs: i32)
fn mul_assign(&mut self, rhs: i32)
Performs the
*=
operation. Read moresourceimpl MulAssign<i32> for BigInt
impl MulAssign<i32> for BigInt
sourcefn mul_assign(&mut self, rhs: i32)
fn mul_assign(&mut self, rhs: i32)
Performs the
*=
operation. Read moresourceimpl<'a> MulAssign<i64> for &'a mut BigInt
impl<'a> MulAssign<i64> for &'a mut BigInt
sourcefn mul_assign(&mut self, rhs: i64)
fn mul_assign(&mut self, rhs: i64)
Performs the
*=
operation. Read moresourceimpl MulAssign<i64> for BigInt
impl MulAssign<i64> for BigInt
sourcefn mul_assign(&mut self, rhs: i64)
fn mul_assign(&mut self, rhs: i64)
Performs the
*=
operation. Read moresourceimpl<'a> MulAssign<u32> for &'a mut BigInt
impl<'a> MulAssign<u32> for &'a mut BigInt
sourcefn mul_assign(&mut self, rhs: u32)
fn mul_assign(&mut self, rhs: u32)
Performs the
*=
operation. Read moresourceimpl MulAssign<u32> for BigInt
impl MulAssign<u32> for BigInt
sourcefn mul_assign(&mut self, rhs: u32)
fn mul_assign(&mut self, rhs: u32)
Performs the
*=
operation. Read moresourceimpl<'a> MulAssign<u64> for &'a mut BigInt
impl<'a> MulAssign<u64> for &'a mut BigInt
sourcefn mul_assign(&mut self, rhs: u64)
fn mul_assign(&mut self, rhs: u64)
Performs the
*=
operation. Read moresourceimpl MulAssign<u64> for BigInt
impl MulAssign<u64> for BigInt
sourcefn mul_assign(&mut self, rhs: u64)
fn mul_assign(&mut self, rhs: u64)
Performs the
*=
operation. Read moresourceimpl Ord for BigInt
impl Ord for BigInt
1.21.0 · sourcefn max(self, other: Self) -> Self
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Self
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl<'a> PartialOrd<&BigInt> for &'a mut BigInt
impl<'a> PartialOrd<&BigInt> for &'a mut BigInt
sourcefn partial_cmp(&self, other: &&BigInt) -> Option<Ordering>
fn partial_cmp(&self, other: &&BigInt) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresourceimpl<'a> PartialOrd<&i32> for &'a mut BigInt
impl<'a> PartialOrd<&i32> for &'a mut BigInt
sourcefn partial_cmp(&self, other: &&i32) -> Option<Ordering>
fn partial_cmp(&self, other: &&i32) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresourceimpl<'a> PartialOrd<&i64> for &'a mut BigInt
impl<'a> PartialOrd<&i64> for &'a mut BigInt
sourcefn partial_cmp(&self, other: &&i64) -> Option<Ordering>
fn partial_cmp(&self, other: &&i64) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresourceimpl<'a> PartialOrd<&u32> for &'a mut BigInt
impl<'a> PartialOrd<&u32> for &'a mut BigInt
sourcefn partial_cmp(&self, other: &&u32) -> Option<Ordering>
fn partial_cmp(&self, other: &&u32) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresourceimpl<'a> PartialOrd<&u64> for &'a mut BigInt
impl<'a> PartialOrd<&u64> for &'a mut BigInt
sourcefn partial_cmp(&self, other: &&u64) -> Option<Ordering>
fn partial_cmp(&self, other: &&u64) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresourceimpl<'a> PartialOrd<BigInt> for &'a mut BigInt
impl<'a> PartialOrd<BigInt> for &'a mut BigInt
sourcefn partial_cmp(&self, other: &BigInt) -> Option<Ordering>
fn partial_cmp(&self, other: &BigInt) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresourceimpl PartialOrd<BigInt> for BigInt
impl PartialOrd<BigInt> for BigInt
sourcefn partial_cmp(&self, other: &Self) -> Option<Ordering>
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresourceimpl<'a> PartialOrd<i32> for &'a mut BigInt
impl<'a> PartialOrd<i32> for &'a mut BigInt
sourcefn partial_cmp(&self, other: &i32) -> Option<Ordering>
fn partial_cmp(&self, other: &i32) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresourceimpl PartialOrd<i32> for BigInt
impl PartialOrd<i32> for BigInt
sourcefn partial_cmp(&self, other: &i32) -> Option<Ordering>
fn partial_cmp(&self, other: &i32) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresourceimpl<'a> PartialOrd<i64> for &'a mut BigInt
impl<'a> PartialOrd<i64> for &'a mut BigInt
sourcefn partial_cmp(&self, other: &i64) -> Option<Ordering>
fn partial_cmp(&self, other: &i64) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresourceimpl PartialOrd<i64> for BigInt
impl PartialOrd<i64> for BigInt
sourcefn partial_cmp(&self, other: &i64) -> Option<Ordering>
fn partial_cmp(&self, other: &i64) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresourceimpl<'a> PartialOrd<u32> for &'a mut BigInt
impl<'a> PartialOrd<u32> for &'a mut BigInt
sourcefn partial_cmp(&self, other: &u32) -> Option<Ordering>
fn partial_cmp(&self, other: &u32) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresourceimpl PartialOrd<u32> for BigInt
impl PartialOrd<u32> for BigInt
sourcefn partial_cmp(&self, other: &u32) -> Option<Ordering>
fn partial_cmp(&self, other: &u32) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresourceimpl<'a> PartialOrd<u64> for &'a mut BigInt
impl<'a> PartialOrd<u64> for &'a mut BigInt
sourcefn partial_cmp(&self, other: &u64) -> Option<Ordering>
fn partial_cmp(&self, other: &u64) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresourceimpl PartialOrd<u64> for BigInt
impl PartialOrd<u64> for BigInt
sourcefn partial_cmp(&self, other: &u64) -> Option<Ordering>
fn partial_cmp(&self, other: &u64) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresourceimpl<'a> RemAssign<&'a BigInt> for &'a mut BigInt
impl<'a> RemAssign<&'a BigInt> for &'a mut BigInt
sourcefn rem_assign(&mut self, rhs: &'a BigInt)
fn rem_assign(&mut self, rhs: &'a BigInt)
Performs the
%=
operation. Read moresourceimpl<'a> RemAssign<&'a BigInt> for BigInt
impl<'a> RemAssign<&'a BigInt> for BigInt
sourcefn rem_assign(&mut self, rhs: &'a BigInt)
fn rem_assign(&mut self, rhs: &'a BigInt)
Performs the
%=
operation. Read moresourceimpl<'a> RemAssign<&'a i32> for &'a mut BigInt
impl<'a> RemAssign<&'a i32> for &'a mut BigInt
sourcefn rem_assign(&mut self, rhs: &'a i32)
fn rem_assign(&mut self, rhs: &'a i32)
Performs the
%=
operation. Read moresourceimpl<'a> RemAssign<&'a i32> for BigInt
impl<'a> RemAssign<&'a i32> for BigInt
sourcefn rem_assign(&mut self, rhs: &'a i32)
fn rem_assign(&mut self, rhs: &'a i32)
Performs the
%=
operation. Read moresourceimpl<'a> RemAssign<&'a i64> for &'a mut BigInt
impl<'a> RemAssign<&'a i64> for &'a mut BigInt
sourcefn rem_assign(&mut self, rhs: &'a i64)
fn rem_assign(&mut self, rhs: &'a i64)
Performs the
%=
operation. Read moresourceimpl<'a> RemAssign<&'a i64> for BigInt
impl<'a> RemAssign<&'a i64> for BigInt
sourcefn rem_assign(&mut self, rhs: &'a i64)
fn rem_assign(&mut self, rhs: &'a i64)
Performs the
%=
operation. Read moresourceimpl<'a> RemAssign<&'a mut BigInt> for BigInt
impl<'a> RemAssign<&'a mut BigInt> for BigInt
sourcefn rem_assign(&mut self, rhs: &'a mut BigInt)
fn rem_assign(&mut self, rhs: &'a mut BigInt)
Performs the
%=
operation. Read moresourceimpl<'a> RemAssign<&'a mut i32> for BigInt
impl<'a> RemAssign<&'a mut i32> for BigInt
sourcefn rem_assign(&mut self, rhs: &'a mut i32)
fn rem_assign(&mut self, rhs: &'a mut i32)
Performs the
%=
operation. Read moresourceimpl<'a> RemAssign<&'a mut i64> for BigInt
impl<'a> RemAssign<&'a mut i64> for BigInt
sourcefn rem_assign(&mut self, rhs: &'a mut i64)
fn rem_assign(&mut self, rhs: &'a mut i64)
Performs the
%=
operation. Read moresourceimpl<'a> RemAssign<&'a mut u32> for BigInt
impl<'a> RemAssign<&'a mut u32> for BigInt
sourcefn rem_assign(&mut self, rhs: &'a mut u32)
fn rem_assign(&mut self, rhs: &'a mut u32)
Performs the
%=
operation. Read moresourceimpl<'a> RemAssign<&'a mut u64> for BigInt
impl<'a> RemAssign<&'a mut u64> for BigInt
sourcefn rem_assign(&mut self, rhs: &'a mut u64)
fn rem_assign(&mut self, rhs: &'a mut u64)
Performs the
%=
operation. Read moresourceimpl<'a> RemAssign<&'a u32> for &'a mut BigInt
impl<'a> RemAssign<&'a u32> for &'a mut BigInt
sourcefn rem_assign(&mut self, rhs: &'a u32)
fn rem_assign(&mut self, rhs: &'a u32)
Performs the
%=
operation. Read moresourceimpl<'a> RemAssign<&'a u32> for BigInt
impl<'a> RemAssign<&'a u32> for BigInt
sourcefn rem_assign(&mut self, rhs: &'a u32)
fn rem_assign(&mut self, rhs: &'a u32)
Performs the
%=
operation. Read moresourceimpl<'a> RemAssign<&'a u64> for &'a mut BigInt
impl<'a> RemAssign<&'a u64> for &'a mut BigInt
sourcefn rem_assign(&mut self, rhs: &'a u64)
fn rem_assign(&mut self, rhs: &'a u64)
Performs the
%=
operation. Read moresourceimpl<'a> RemAssign<&'a u64> for BigInt
impl<'a> RemAssign<&'a u64> for BigInt
sourcefn rem_assign(&mut self, rhs: &'a u64)
fn rem_assign(&mut self, rhs: &'a u64)
Performs the
%=
operation. Read moresourceimpl<'a> RemAssign<BigInt> for &'a mut BigInt
impl<'a> RemAssign<BigInt> for &'a mut BigInt
sourcefn rem_assign(&mut self, rhs: BigInt)
fn rem_assign(&mut self, rhs: BigInt)
Performs the
%=
operation. Read moresourceimpl RemAssign<BigInt> for BigInt
impl RemAssign<BigInt> for BigInt
sourcefn rem_assign(&mut self, rhs: Self)
fn rem_assign(&mut self, rhs: Self)
Performs the
%=
operation. Read moresourceimpl<'a> RemAssign<i32> for &'a mut BigInt
impl<'a> RemAssign<i32> for &'a mut BigInt
sourcefn rem_assign(&mut self, rhs: i32)
fn rem_assign(&mut self, rhs: i32)
Performs the
%=
operation. Read moresourceimpl RemAssign<i32> for BigInt
impl RemAssign<i32> for BigInt
sourcefn rem_assign(&mut self, rhs: i32)
fn rem_assign(&mut self, rhs: i32)
Performs the
%=
operation. Read moresourceimpl<'a> RemAssign<i64> for &'a mut BigInt
impl<'a> RemAssign<i64> for &'a mut BigInt
sourcefn rem_assign(&mut self, rhs: i64)
fn rem_assign(&mut self, rhs: i64)
Performs the
%=
operation. Read moresourceimpl RemAssign<i64> for BigInt
impl RemAssign<i64> for BigInt
sourcefn rem_assign(&mut self, rhs: i64)
fn rem_assign(&mut self, rhs: i64)
Performs the
%=
operation. Read moresourceimpl<'a> RemAssign<u32> for &'a mut BigInt
impl<'a> RemAssign<u32> for &'a mut BigInt
sourcefn rem_assign(&mut self, rhs: u32)
fn rem_assign(&mut self, rhs: u32)
Performs the
%=
operation. Read moresourceimpl RemAssign<u32> for BigInt
impl RemAssign<u32> for BigInt
sourcefn rem_assign(&mut self, rhs: u32)
fn rem_assign(&mut self, rhs: u32)
Performs the
%=
operation. Read moresourceimpl<'a> RemAssign<u64> for &'a mut BigInt
impl<'a> RemAssign<u64> for &'a mut BigInt
sourcefn rem_assign(&mut self, rhs: u64)
fn rem_assign(&mut self, rhs: u64)
Performs the
%=
operation. Read moresourceimpl RemAssign<u64> for BigInt
impl RemAssign<u64> for BigInt
sourcefn rem_assign(&mut self, rhs: u64)
fn rem_assign(&mut self, rhs: u64)
Performs the
%=
operation. Read moresourceimpl<'a> ShlAssign<&'a BigInt> for &'a mut BigInt
impl<'a> ShlAssign<&'a BigInt> for &'a mut BigInt
sourcefn shl_assign(&mut self, rhs: &'a BigInt)
fn shl_assign(&mut self, rhs: &'a BigInt)
Performs the
<<=
operation. Read moresourceimpl<'a> ShlAssign<&'a BigInt> for BigInt
impl<'a> ShlAssign<&'a BigInt> for BigInt
sourcefn shl_assign(&mut self, rhs: &'a BigInt)
fn shl_assign(&mut self, rhs: &'a BigInt)
Performs the
<<=
operation. Read moresourceimpl<'a> ShlAssign<&'a i32> for &'a mut BigInt
impl<'a> ShlAssign<&'a i32> for &'a mut BigInt
sourcefn shl_assign(&mut self, rhs: &'a i32)
fn shl_assign(&mut self, rhs: &'a i32)
Performs the
<<=
operation. Read moresourceimpl<'a> ShlAssign<&'a i32> for BigInt
impl<'a> ShlAssign<&'a i32> for BigInt
sourcefn shl_assign(&mut self, rhs: &'a i32)
fn shl_assign(&mut self, rhs: &'a i32)
Performs the
<<=
operation. Read moresourceimpl<'a> ShlAssign<&'a i64> for &'a mut BigInt
impl<'a> ShlAssign<&'a i64> for &'a mut BigInt
sourcefn shl_assign(&mut self, rhs: &'a i64)
fn shl_assign(&mut self, rhs: &'a i64)
Performs the
<<=
operation. Read moresourceimpl<'a> ShlAssign<&'a i64> for BigInt
impl<'a> ShlAssign<&'a i64> for BigInt
sourcefn shl_assign(&mut self, rhs: &'a i64)
fn shl_assign(&mut self, rhs: &'a i64)
Performs the
<<=
operation. Read moresourceimpl<'a> ShlAssign<&'a mut BigInt> for BigInt
impl<'a> ShlAssign<&'a mut BigInt> for BigInt
sourcefn shl_assign(&mut self, rhs: &'a mut BigInt)
fn shl_assign(&mut self, rhs: &'a mut BigInt)
Performs the
<<=
operation. Read moresourceimpl<'a> ShlAssign<&'a mut i32> for BigInt
impl<'a> ShlAssign<&'a mut i32> for BigInt
sourcefn shl_assign(&mut self, rhs: &'a mut i32)
fn shl_assign(&mut self, rhs: &'a mut i32)
Performs the
<<=
operation. Read moresourceimpl<'a> ShlAssign<&'a mut i64> for BigInt
impl<'a> ShlAssign<&'a mut i64> for BigInt
sourcefn shl_assign(&mut self, rhs: &'a mut i64)
fn shl_assign(&mut self, rhs: &'a mut i64)
Performs the
<<=
operation. Read moresourceimpl<'a> ShlAssign<&'a mut u32> for BigInt
impl<'a> ShlAssign<&'a mut u32> for BigInt
sourcefn shl_assign(&mut self, rhs: &'a mut u32)
fn shl_assign(&mut self, rhs: &'a mut u32)
Performs the
<<=
operation. Read moresourceimpl<'a> ShlAssign<&'a mut u64> for BigInt
impl<'a> ShlAssign<&'a mut u64> for BigInt
sourcefn shl_assign(&mut self, rhs: &'a mut u64)
fn shl_assign(&mut self, rhs: &'a mut u64)
Performs the
<<=
operation. Read moresourceimpl<'a> ShlAssign<&'a u32> for &'a mut BigInt
impl<'a> ShlAssign<&'a u32> for &'a mut BigInt
sourcefn shl_assign(&mut self, rhs: &'a u32)
fn shl_assign(&mut self, rhs: &'a u32)
Performs the
<<=
operation. Read moresourceimpl<'a> ShlAssign<&'a u32> for BigInt
impl<'a> ShlAssign<&'a u32> for BigInt
sourcefn shl_assign(&mut self, rhs: &'a u32)
fn shl_assign(&mut self, rhs: &'a u32)
Performs the
<<=
operation. Read moresourceimpl<'a> ShlAssign<&'a u64> for &'a mut BigInt
impl<'a> ShlAssign<&'a u64> for &'a mut BigInt
sourcefn shl_assign(&mut self, rhs: &'a u64)
fn shl_assign(&mut self, rhs: &'a u64)
Performs the
<<=
operation. Read moresourceimpl<'a> ShlAssign<&'a u64> for BigInt
impl<'a> ShlAssign<&'a u64> for BigInt
sourcefn shl_assign(&mut self, rhs: &'a u64)
fn shl_assign(&mut self, rhs: &'a u64)
Performs the
<<=
operation. Read moresourceimpl<'a> ShlAssign<BigInt> for &'a mut BigInt
impl<'a> ShlAssign<BigInt> for &'a mut BigInt
sourcefn shl_assign(&mut self, rhs: BigInt)
fn shl_assign(&mut self, rhs: BigInt)
Performs the
<<=
operation. Read moresourceimpl ShlAssign<BigInt> for BigInt
impl ShlAssign<BigInt> for BigInt
sourcefn shl_assign(&mut self, rhs: BigInt)
fn shl_assign(&mut self, rhs: BigInt)
Performs the
<<=
operation. Read moresourceimpl<'a> ShlAssign<i32> for &'a mut BigInt
impl<'a> ShlAssign<i32> for &'a mut BigInt
sourcefn shl_assign(&mut self, rhs: i32)
fn shl_assign(&mut self, rhs: i32)
Performs the
<<=
operation. Read moresourceimpl ShlAssign<i32> for BigInt
impl ShlAssign<i32> for BigInt
sourcefn shl_assign(&mut self, rhs: i32)
fn shl_assign(&mut self, rhs: i32)
Performs the
<<=
operation. Read moresourceimpl<'a> ShlAssign<i64> for &'a mut BigInt
impl<'a> ShlAssign<i64> for &'a mut BigInt
sourcefn shl_assign(&mut self, rhs: i64)
fn shl_assign(&mut self, rhs: i64)
Performs the
<<=
operation. Read moresourceimpl ShlAssign<i64> for BigInt
impl ShlAssign<i64> for BigInt
sourcefn shl_assign(&mut self, rhs: i64)
fn shl_assign(&mut self, rhs: i64)
Performs the
<<=
operation. Read moresourceimpl<'a> ShlAssign<u32> for &'a mut BigInt
impl<'a> ShlAssign<u32> for &'a mut BigInt
sourcefn shl_assign(&mut self, rhs: u32)
fn shl_assign(&mut self, rhs: u32)
Performs the
<<=
operation. Read moresourceimpl ShlAssign<u32> for BigInt
impl ShlAssign<u32> for BigInt
sourcefn shl_assign(&mut self, rhs: u32)
fn shl_assign(&mut self, rhs: u32)
Performs the
<<=
operation. Read moresourceimpl<'a> ShlAssign<u64> for &'a mut BigInt
impl<'a> ShlAssign<u64> for &'a mut BigInt
sourcefn shl_assign(&mut self, rhs: u64)
fn shl_assign(&mut self, rhs: u64)
Performs the
<<=
operation. Read moresourceimpl ShlAssign<u64> for BigInt
impl ShlAssign<u64> for BigInt
sourcefn shl_assign(&mut self, rhs: u64)
fn shl_assign(&mut self, rhs: u64)
Performs the
<<=
operation. Read moresourceimpl<'a> ShrAssign<&'a BigInt> for &'a mut BigInt
impl<'a> ShrAssign<&'a BigInt> for &'a mut BigInt
sourcefn shr_assign(&mut self, rhs: &'a BigInt)
fn shr_assign(&mut self, rhs: &'a BigInt)
Performs the
>>=
operation. Read moresourceimpl<'a> ShrAssign<&'a BigInt> for BigInt
impl<'a> ShrAssign<&'a BigInt> for BigInt
sourcefn shr_assign(&mut self, rhs: &'a BigInt)
fn shr_assign(&mut self, rhs: &'a BigInt)
Performs the
>>=
operation. Read moresourceimpl<'a> ShrAssign<&'a i32> for &'a mut BigInt
impl<'a> ShrAssign<&'a i32> for &'a mut BigInt
sourcefn shr_assign(&mut self, rhs: &'a i32)
fn shr_assign(&mut self, rhs: &'a i32)
Performs the
>>=
operation. Read moresourceimpl<'a> ShrAssign<&'a i32> for BigInt
impl<'a> ShrAssign<&'a i32> for BigInt
sourcefn shr_assign(&mut self, rhs: &'a i32)
fn shr_assign(&mut self, rhs: &'a i32)
Performs the
>>=
operation. Read moresourceimpl<'a> ShrAssign<&'a i64> for &'a mut BigInt
impl<'a> ShrAssign<&'a i64> for &'a mut BigInt
sourcefn shr_assign(&mut self, rhs: &'a i64)
fn shr_assign(&mut self, rhs: &'a i64)
Performs the
>>=
operation. Read moresourceimpl<'a> ShrAssign<&'a i64> for BigInt
impl<'a> ShrAssign<&'a i64> for BigInt
sourcefn shr_assign(&mut self, rhs: &'a i64)
fn shr_assign(&mut self, rhs: &'a i64)
Performs the
>>=
operation. Read moresourceimpl<'a> ShrAssign<&'a mut BigInt> for BigInt
impl<'a> ShrAssign<&'a mut BigInt> for BigInt
sourcefn shr_assign(&mut self, rhs: &'a mut BigInt)
fn shr_assign(&mut self, rhs: &'a mut BigInt)
Performs the
>>=
operation. Read moresourceimpl<'a> ShrAssign<&'a mut i32> for BigInt
impl<'a> ShrAssign<&'a mut i32> for BigInt
sourcefn shr_assign(&mut self, rhs: &'a mut i32)
fn shr_assign(&mut self, rhs: &'a mut i32)
Performs the
>>=
operation. Read moresourceimpl<'a> ShrAssign<&'a mut i64> for BigInt
impl<'a> ShrAssign<&'a mut i64> for BigInt
sourcefn shr_assign(&mut self, rhs: &'a mut i64)
fn shr_assign(&mut self, rhs: &'a mut i64)
Performs the
>>=
operation. Read moresourceimpl<'a> ShrAssign<&'a mut u32> for BigInt
impl<'a> ShrAssign<&'a mut u32> for BigInt
sourcefn shr_assign(&mut self, rhs: &'a mut u32)
fn shr_assign(&mut self, rhs: &'a mut u32)
Performs the
>>=
operation. Read moresourceimpl<'a> ShrAssign<&'a mut u64> for BigInt
impl<'a> ShrAssign<&'a mut u64> for BigInt
sourcefn shr_assign(&mut self, rhs: &'a mut u64)
fn shr_assign(&mut self, rhs: &'a mut u64)
Performs the
>>=
operation. Read moresourceimpl<'a> ShrAssign<&'a u32> for &'a mut BigInt
impl<'a> ShrAssign<&'a u32> for &'a mut BigInt
sourcefn shr_assign(&mut self, rhs: &'a u32)
fn shr_assign(&mut self, rhs: &'a u32)
Performs the
>>=
operation. Read moresourceimpl<'a> ShrAssign<&'a u32> for BigInt
impl<'a> ShrAssign<&'a u32> for BigInt
sourcefn shr_assign(&mut self, rhs: &'a u32)
fn shr_assign(&mut self, rhs: &'a u32)
Performs the
>>=
operation. Read moresourceimpl<'a> ShrAssign<&'a u64> for &'a mut BigInt
impl<'a> ShrAssign<&'a u64> for &'a mut BigInt
sourcefn shr_assign(&mut self, rhs: &'a u64)
fn shr_assign(&mut self, rhs: &'a u64)
Performs the
>>=
operation. Read moresourceimpl<'a> ShrAssign<&'a u64> for BigInt
impl<'a> ShrAssign<&'a u64> for BigInt
sourcefn shr_assign(&mut self, rhs: &'a u64)
fn shr_assign(&mut self, rhs: &'a u64)
Performs the
>>=
operation. Read moresourceimpl<'a> ShrAssign<BigInt> for &'a mut BigInt
impl<'a> ShrAssign<BigInt> for &'a mut BigInt
sourcefn shr_assign(&mut self, rhs: BigInt)
fn shr_assign(&mut self, rhs: BigInt)
Performs the
>>=
operation. Read moresourceimpl ShrAssign<BigInt> for BigInt
impl ShrAssign<BigInt> for BigInt
sourcefn shr_assign(&mut self, rhs: BigInt)
fn shr_assign(&mut self, rhs: BigInt)
Performs the
>>=
operation. Read moresourceimpl<'a> ShrAssign<i32> for &'a mut BigInt
impl<'a> ShrAssign<i32> for &'a mut BigInt
sourcefn shr_assign(&mut self, rhs: i32)
fn shr_assign(&mut self, rhs: i32)
Performs the
>>=
operation. Read moresourceimpl ShrAssign<i32> for BigInt
impl ShrAssign<i32> for BigInt
sourcefn shr_assign(&mut self, rhs: i32)
fn shr_assign(&mut self, rhs: i32)
Performs the
>>=
operation. Read moresourceimpl<'a> ShrAssign<i64> for &'a mut BigInt
impl<'a> ShrAssign<i64> for &'a mut BigInt
sourcefn shr_assign(&mut self, rhs: i64)
fn shr_assign(&mut self, rhs: i64)
Performs the
>>=
operation. Read moresourceimpl ShrAssign<i64> for BigInt
impl ShrAssign<i64> for BigInt
sourcefn shr_assign(&mut self, rhs: i64)
fn shr_assign(&mut self, rhs: i64)
Performs the
>>=
operation. Read moresourceimpl<'a> ShrAssign<u32> for &'a mut BigInt
impl<'a> ShrAssign<u32> for &'a mut BigInt
sourcefn shr_assign(&mut self, rhs: u32)
fn shr_assign(&mut self, rhs: u32)
Performs the
>>=
operation. Read moresourceimpl ShrAssign<u32> for BigInt
impl ShrAssign<u32> for BigInt
sourcefn shr_assign(&mut self, rhs: u32)
fn shr_assign(&mut self, rhs: u32)
Performs the
>>=
operation. Read moresourceimpl<'a> ShrAssign<u64> for &'a mut BigInt
impl<'a> ShrAssign<u64> for &'a mut BigInt
sourcefn shr_assign(&mut self, rhs: u64)
fn shr_assign(&mut self, rhs: u64)
Performs the
>>=
operation. Read moresourceimpl ShrAssign<u64> for BigInt
impl ShrAssign<u64> for BigInt
sourcefn shr_assign(&mut self, rhs: u64)
fn shr_assign(&mut self, rhs: u64)
Performs the
>>=
operation. Read moresourceimpl<'a> SubAssign<&'a BigInt> for &'a mut BigInt
impl<'a> SubAssign<&'a BigInt> for &'a mut BigInt
sourcefn sub_assign(&mut self, rhs: &'a BigInt)
fn sub_assign(&mut self, rhs: &'a BigInt)
Performs the
-=
operation. Read moresourceimpl<'a> SubAssign<&'a BigInt> for BigInt
impl<'a> SubAssign<&'a BigInt> for BigInt
sourcefn sub_assign(&mut self, rhs: &'a BigInt)
fn sub_assign(&mut self, rhs: &'a BigInt)
Performs the
-=
operation. Read moresourceimpl<'a> SubAssign<&'a i32> for &'a mut BigInt
impl<'a> SubAssign<&'a i32> for &'a mut BigInt
sourcefn sub_assign(&mut self, rhs: &'a i32)
fn sub_assign(&mut self, rhs: &'a i32)
Performs the
-=
operation. Read moresourceimpl<'a> SubAssign<&'a i32> for BigInt
impl<'a> SubAssign<&'a i32> for BigInt
sourcefn sub_assign(&mut self, rhs: &'a i32)
fn sub_assign(&mut self, rhs: &'a i32)
Performs the
-=
operation. Read moresourceimpl<'a> SubAssign<&'a i64> for &'a mut BigInt
impl<'a> SubAssign<&'a i64> for &'a mut BigInt
sourcefn sub_assign(&mut self, rhs: &'a i64)
fn sub_assign(&mut self, rhs: &'a i64)
Performs the
-=
operation. Read moresourceimpl<'a> SubAssign<&'a i64> for BigInt
impl<'a> SubAssign<&'a i64> for BigInt
sourcefn sub_assign(&mut self, rhs: &'a i64)
fn sub_assign(&mut self, rhs: &'a i64)
Performs the
-=
operation. Read moresourceimpl<'a> SubAssign<&'a mut BigInt> for BigInt
impl<'a> SubAssign<&'a mut BigInt> for BigInt
sourcefn sub_assign(&mut self, rhs: &'a mut BigInt)
fn sub_assign(&mut self, rhs: &'a mut BigInt)
Performs the
-=
operation. Read moresourceimpl<'a> SubAssign<&'a mut i32> for BigInt
impl<'a> SubAssign<&'a mut i32> for BigInt
sourcefn sub_assign(&mut self, rhs: &'a mut i32)
fn sub_assign(&mut self, rhs: &'a mut i32)
Performs the
-=
operation. Read moresourceimpl<'a> SubAssign<&'a mut i64> for BigInt
impl<'a> SubAssign<&'a mut i64> for BigInt
sourcefn sub_assign(&mut self, rhs: &'a mut i64)
fn sub_assign(&mut self, rhs: &'a mut i64)
Performs the
-=
operation. Read moresourceimpl<'a> SubAssign<&'a mut u32> for BigInt
impl<'a> SubAssign<&'a mut u32> for BigInt
sourcefn sub_assign(&mut self, rhs: &'a mut u32)
fn sub_assign(&mut self, rhs: &'a mut u32)
Performs the
-=
operation. Read moresourceimpl<'a> SubAssign<&'a mut u64> for BigInt
impl<'a> SubAssign<&'a mut u64> for BigInt
sourcefn sub_assign(&mut self, rhs: &'a mut u64)
fn sub_assign(&mut self, rhs: &'a mut u64)
Performs the
-=
operation. Read moresourceimpl<'a> SubAssign<&'a u32> for &'a mut BigInt
impl<'a> SubAssign<&'a u32> for &'a mut BigInt
sourcefn sub_assign(&mut self, rhs: &'a u32)
fn sub_assign(&mut self, rhs: &'a u32)
Performs the
-=
operation. Read moresourceimpl<'a> SubAssign<&'a u32> for BigInt
impl<'a> SubAssign<&'a u32> for BigInt
sourcefn sub_assign(&mut self, rhs: &'a u32)
fn sub_assign(&mut self, rhs: &'a u32)
Performs the
-=
operation. Read moresourceimpl<'a> SubAssign<&'a u64> for &'a mut BigInt
impl<'a> SubAssign<&'a u64> for &'a mut BigInt
sourcefn sub_assign(&mut self, rhs: &'a u64)
fn sub_assign(&mut self, rhs: &'a u64)
Performs the
-=
operation. Read moresourceimpl<'a> SubAssign<&'a u64> for BigInt
impl<'a> SubAssign<&'a u64> for BigInt
sourcefn sub_assign(&mut self, rhs: &'a u64)
fn sub_assign(&mut self, rhs: &'a u64)
Performs the
-=
operation. Read moresourceimpl<'a> SubAssign<BigInt> for &'a mut BigInt
impl<'a> SubAssign<BigInt> for &'a mut BigInt
sourcefn sub_assign(&mut self, rhs: BigInt)
fn sub_assign(&mut self, rhs: BigInt)
Performs the
-=
operation. Read moresourceimpl SubAssign<BigInt> for BigInt
impl SubAssign<BigInt> for BigInt
sourcefn sub_assign(&mut self, rhs: Self)
fn sub_assign(&mut self, rhs: Self)
Performs the
-=
operation. Read moresourceimpl<'a> SubAssign<i32> for &'a mut BigInt
impl<'a> SubAssign<i32> for &'a mut BigInt
sourcefn sub_assign(&mut self, rhs: i32)
fn sub_assign(&mut self, rhs: i32)
Performs the
-=
operation. Read moresourceimpl SubAssign<i32> for BigInt
impl SubAssign<i32> for BigInt
sourcefn sub_assign(&mut self, rhs: i32)
fn sub_assign(&mut self, rhs: i32)
Performs the
-=
operation. Read moresourceimpl<'a> SubAssign<i64> for &'a mut BigInt
impl<'a> SubAssign<i64> for &'a mut BigInt
sourcefn sub_assign(&mut self, rhs: i64)
fn sub_assign(&mut self, rhs: i64)
Performs the
-=
operation. Read moresourceimpl SubAssign<i64> for BigInt
impl SubAssign<i64> for BigInt
sourcefn sub_assign(&mut self, rhs: i64)
fn sub_assign(&mut self, rhs: i64)
Performs the
-=
operation. Read moresourceimpl<'a> SubAssign<u32> for &'a mut BigInt
impl<'a> SubAssign<u32> for &'a mut BigInt
sourcefn sub_assign(&mut self, rhs: u32)
fn sub_assign(&mut self, rhs: u32)
Performs the
-=
operation. Read moresourceimpl SubAssign<u32> for BigInt
impl SubAssign<u32> for BigInt
sourcefn sub_assign(&mut self, rhs: u32)
fn sub_assign(&mut self, rhs: u32)
Performs the
-=
operation. Read moresourceimpl<'a> SubAssign<u64> for &'a mut BigInt
impl<'a> SubAssign<u64> for &'a mut BigInt
sourcefn sub_assign(&mut self, rhs: u64)
fn sub_assign(&mut self, rhs: u64)
Performs the
-=
operation. Read moresourceimpl SubAssign<u64> for BigInt
impl SubAssign<u64> for BigInt
sourcefn sub_assign(&mut self, rhs: u64)
fn sub_assign(&mut self, rhs: u64)
Performs the
-=
operation. Read moresourceimpl TryFromVal<Env, Object> for BigInt
impl TryFromVal<Env, Object> for BigInt
type Error = ConversionError
fn try_from_val(env: &Env, val: Object) -> Result<Self, Self::Error>
sourceimpl TryFromVal<Env, RawVal> for BigInt
impl TryFromVal<Env, RawVal> for BigInt
sourceimpl TryFromVal<Env, ScVal> for BigInt
impl TryFromVal<Env, ScVal> for BigInt
type Error = ConversionError
fn try_from_val(env: &Env, val: ScVal) -> Result<Self, Self::Error>
sourceimpl TryIntoVal<Env, BigInt> for Object
impl TryIntoVal<Env, BigInt> for Object
type Error = ConversionError
fn try_into_val(self, env: &Env) -> Result<BigInt, Self::Error>
fn try_into_env_val(self, env: &E) -> Result<EnvVal<E, V>, Self::Error>
sourceimpl TryIntoVal<Env, BigInt> for RawVal
impl TryIntoVal<Env, BigInt> for RawVal
type Error = ConversionError
fn try_into_val(self, env: &Env) -> Result<BigInt, Self::Error>
fn try_into_env_val(self, env: &E) -> Result<EnvVal<E, V>, Self::Error>
sourceimpl TryIntoVal<Env, BigInt> for ScVal
impl TryIntoVal<Env, BigInt> for ScVal
type Error = ConversionError
fn try_into_val(self, env: &Env) -> Result<BigInt, Self::Error>
fn try_into_env_val(self, env: &E) -> Result<EnvVal<E, V>, Self::Error>
impl Eq for BigInt
Auto Trait Implementations
impl !RefUnwindSafe for BigInt
impl !Send for BigInt
impl !Sync for BigInt
impl Unpin for BigInt
impl !UnwindSafe for BigInt
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Deserialize for Twhere
T: TryFromVal<Env, RawVal>,
impl<T> Deserialize for Twhere
T: TryFromVal<Env, RawVal>,
type Error = <T as TryFromVal<Env, RawVal>>::Error
fn deserialize(env: &Env, b: &Bytes) -> Result<T, <T as Deserialize>::Error>
impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
. Read morefn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
. Read morefn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s. Read morefn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s. Read more