[−][src]Struct smallbigint::Uint
Methods
impl Uint[src]
pub const fn zero() -> Self[src]
pub const fn small(x: u32) -> Self[src]
pub fn big(v: BigUint) -> Self[src]
pub fn cow_big(&self) -> Cow<BigUint>[src]
A convenience function to get or convert to a BigUint, without
having to copy any heap-allocated data if we are already a &BigUint.
Given a variable x : &Uint, the following pattern may be useful to get
a &BigUint without unneeded allocation. If the Uint is small, then
we create a new temporary BigUint from it and the Rust compiler can
automatically figure out the lifetimes.
let x1 = x.cow_big(); let x2 : &BigUint = x1.borrow();
We have to
- Put
x1in a variable, so that the compiler can figure out the lifetimes - Put
x2in a variable, otherwise the Rust compiler can't figure out its type.
pub fn normalize(self) -> Self[src]
If we're storing a BigUint but it would fit in a small uint instead, then
convert, and discard the heap-allocated memory.
Trait Implementations
impl<'_> Add<&'_ Uint> for Uint[src]
type Output = Uint
The resulting type after applying the + operator.
fn add(self, v: &Uint) -> Uint[src]
impl<'_, '_> Add<&'_ Uint> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the + operator.
fn add(self, v: &Uint) -> Uint[src]
impl<'_> Add<&'_ u128> for Uint[src]
type Output = Uint
The resulting type after applying the + operator.
fn add(self, v: &u128) -> Uint[src]
impl<'_, '_> Add<&'_ u128> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the + operator.
fn add(self, v: &u128) -> Uint[src]
impl<'_> Add<&'_ u16> for Uint[src]
type Output = Uint
The resulting type after applying the + operator.
fn add(self, v: &u16) -> Uint[src]
impl<'_, '_> Add<&'_ u16> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the + operator.
fn add(self, v: &u16) -> Uint[src]
impl<'_> Add<&'_ u32> for Uint[src]
type Output = Uint
The resulting type after applying the + operator.
fn add(self, v: &u32) -> Uint[src]
impl<'_, '_> Add<&'_ u32> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the + operator.
fn add(self, v: &u32) -> Uint[src]
impl<'_> Add<&'_ u64> for Uint[src]
type Output = Uint
The resulting type after applying the + operator.
fn add(self, v: &u64) -> Uint[src]
impl<'_, '_> Add<&'_ u64> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the + operator.
fn add(self, v: &u64) -> Uint[src]
impl<'_> Add<&'_ u8> for Uint[src]
type Output = Uint
The resulting type after applying the + operator.
fn add(self, v: &u8) -> Uint[src]
impl<'_, '_> Add<&'_ u8> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the + operator.
fn add(self, v: &u8) -> Uint[src]
impl<'_> Add<&'_ usize> for Uint[src]
type Output = Uint
The resulting type after applying the + operator.
fn add(self, v: &usize) -> Uint[src]
impl<'_, '_> Add<&'_ usize> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the + operator.
fn add(self, v: &usize) -> Uint[src]
impl Add<Uint> for Uint[src]
type Output = Uint
The resulting type after applying the + operator.
fn add(self, v: Uint) -> Uint[src]
impl<'_> Add<Uint> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the + operator.
fn add(self, v: Uint) -> Uint[src]
impl Add<u128> for Uint[src]
type Output = Uint
The resulting type after applying the + operator.
fn add(self, v: u128) -> Uint[src]
impl<'_> Add<u128> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the + operator.
fn add(self, v: u128) -> Uint[src]
impl Add<u16> for Uint[src]
type Output = Uint
The resulting type after applying the + operator.
fn add(self, v: u16) -> Uint[src]
impl<'_> Add<u16> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the + operator.
fn add(self, v: u16) -> Uint[src]
impl Add<u32> for Uint[src]
type Output = Uint
The resulting type after applying the + operator.
fn add(self, v: u32) -> Uint[src]
impl<'_> Add<u32> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the + operator.
fn add(self, v: u32) -> Uint[src]
impl Add<u64> for Uint[src]
type Output = Uint
The resulting type after applying the + operator.
fn add(self, v: u64) -> Uint[src]
impl<'_> Add<u64> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the + operator.
fn add(self, v: u64) -> Uint[src]
impl Add<u8> for Uint[src]
type Output = Uint
The resulting type after applying the + operator.
fn add(self, v: u8) -> Uint[src]
impl<'_> Add<u8> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the + operator.
fn add(self, v: u8) -> Uint[src]
impl Add<usize> for Uint[src]
type Output = Uint
The resulting type after applying the + operator.
fn add(self, v: usize) -> Uint[src]
impl<'_> Add<usize> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the + operator.
fn add(self, v: usize) -> Uint[src]
impl<'_> AddAssign<&'_ Uint> for Uint[src]
fn add_assign(&mut self, other: &Uint)[src]
impl<'_> AddAssign<&'_ u128> for Uint[src]
fn add_assign(&mut self, other: &u128)[src]
impl<'_> AddAssign<&'_ u16> for Uint[src]
fn add_assign(&mut self, other: &u16)[src]
impl<'_> AddAssign<&'_ u32> for Uint[src]
fn add_assign(&mut self, other: &u32)[src]
impl<'_> AddAssign<&'_ u64> for Uint[src]
fn add_assign(&mut self, other: &u64)[src]
impl<'_> AddAssign<&'_ u8> for Uint[src]
fn add_assign(&mut self, other: &u8)[src]
impl<'_> AddAssign<&'_ usize> for Uint[src]
fn add_assign(&mut self, other: &usize)[src]
impl AddAssign<Uint> for Uint[src]
fn add_assign(&mut self, other: Uint)[src]
impl AddAssign<u128> for Uint[src]
fn add_assign(&mut self, other: u128)[src]
impl AddAssign<u16> for Uint[src]
fn add_assign(&mut self, other: u16)[src]
impl AddAssign<u32> for Uint[src]
fn add_assign(&mut self, other: u32)[src]
impl AddAssign<u64> for Uint[src]
fn add_assign(&mut self, other: u64)[src]
impl AddAssign<u8> for Uint[src]
fn add_assign(&mut self, other: u8)[src]
impl AddAssign<usize> for Uint[src]
fn add_assign(&mut self, other: usize)[src]
impl Clone for Uint[src]
impl Debug for Uint[src]
impl Default for Uint[src]
impl Display for Uint[src]
impl<'_> Div<&'_ Uint> for Uint[src]
type Output = Uint
The resulting type after applying the / operator.
fn div(self, v: &Uint) -> Uint[src]
impl<'_, '_> Div<&'_ Uint> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the / operator.
fn div(self, v: &Uint) -> Uint[src]
impl<'_> Div<&'_ u128> for Uint[src]
type Output = Uint
The resulting type after applying the / operator.
fn div(self, v: &u128) -> Uint[src]
impl<'_, '_> Div<&'_ u128> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the / operator.
fn div(self, v: &u128) -> Uint[src]
impl<'_> Div<&'_ u16> for Uint[src]
type Output = Uint
The resulting type after applying the / operator.
fn div(self, v: &u16) -> Uint[src]
impl<'_, '_> Div<&'_ u16> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the / operator.
fn div(self, v: &u16) -> Uint[src]
impl<'_> Div<&'_ u32> for Uint[src]
type Output = Uint
The resulting type after applying the / operator.
fn div(self, v: &u32) -> Uint[src]
impl<'_, '_> Div<&'_ u32> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the / operator.
fn div(self, v: &u32) -> Uint[src]
impl<'_> Div<&'_ u64> for Uint[src]
type Output = Uint
The resulting type after applying the / operator.
fn div(self, v: &u64) -> Uint[src]
impl<'_, '_> Div<&'_ u64> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the / operator.
fn div(self, v: &u64) -> Uint[src]
impl<'_> Div<&'_ u8> for Uint[src]
type Output = Uint
The resulting type after applying the / operator.
fn div(self, v: &u8) -> Uint[src]
impl<'_, '_> Div<&'_ u8> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the / operator.
fn div(self, v: &u8) -> Uint[src]
impl<'_> Div<&'_ usize> for Uint[src]
type Output = Uint
The resulting type after applying the / operator.
fn div(self, v: &usize) -> Uint[src]
impl<'_, '_> Div<&'_ usize> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the / operator.
fn div(self, v: &usize) -> Uint[src]
impl Div<Uint> for Uint[src]
type Output = Uint
The resulting type after applying the / operator.
fn div(self, v: Uint) -> Uint[src]
impl<'_> Div<Uint> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the / operator.
fn div(self, v: Uint) -> Uint[src]
impl Div<u128> for Uint[src]
type Output = Uint
The resulting type after applying the / operator.
fn div(self, v: u128) -> Uint[src]
impl<'_> Div<u128> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the / operator.
fn div(self, v: u128) -> Uint[src]
impl Div<u16> for Uint[src]
type Output = Uint
The resulting type after applying the / operator.
fn div(self, v: u16) -> Uint[src]
impl<'_> Div<u16> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the / operator.
fn div(self, v: u16) -> Uint[src]
impl Div<u32> for Uint[src]
type Output = Uint
The resulting type after applying the / operator.
fn div(self, v: u32) -> Uint[src]
impl<'_> Div<u32> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the / operator.
fn div(self, v: u32) -> Uint[src]
impl Div<u64> for Uint[src]
type Output = Uint
The resulting type after applying the / operator.
fn div(self, v: u64) -> Uint[src]
impl<'_> Div<u64> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the / operator.
fn div(self, v: u64) -> Uint[src]
impl Div<u8> for Uint[src]
type Output = Uint
The resulting type after applying the / operator.
fn div(self, v: u8) -> Uint[src]
impl<'_> Div<u8> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the / operator.
fn div(self, v: u8) -> Uint[src]
impl Div<usize> for Uint[src]
type Output = Uint
The resulting type after applying the / operator.
fn div(self, v: usize) -> Uint[src]
impl<'_> Div<usize> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the / operator.
fn div(self, v: usize) -> Uint[src]
impl<'_> DivAssign<&'_ Uint> for Uint[src]
fn div_assign(&mut self, other: &Uint)[src]
impl<'_> DivAssign<&'_ u128> for Uint[src]
fn div_assign(&mut self, other: &u128)[src]
impl<'_> DivAssign<&'_ u16> for Uint[src]
fn div_assign(&mut self, other: &u16)[src]
impl<'_> DivAssign<&'_ u32> for Uint[src]
fn div_assign(&mut self, other: &u32)[src]
impl<'_> DivAssign<&'_ u64> for Uint[src]
fn div_assign(&mut self, other: &u64)[src]
impl<'_> DivAssign<&'_ u8> for Uint[src]
fn div_assign(&mut self, other: &u8)[src]
impl<'_> DivAssign<&'_ usize> for Uint[src]
fn div_assign(&mut self, other: &usize)[src]
impl DivAssign<Uint> for Uint[src]
fn div_assign(&mut self, other: Uint)[src]
impl DivAssign<u128> for Uint[src]
fn div_assign(&mut self, other: u128)[src]
impl DivAssign<u16> for Uint[src]
fn div_assign(&mut self, other: u16)[src]
impl DivAssign<u32> for Uint[src]
fn div_assign(&mut self, other: u32)[src]
impl DivAssign<u64> for Uint[src]
fn div_assign(&mut self, other: u64)[src]
impl DivAssign<u8> for Uint[src]
fn div_assign(&mut self, other: u8)[src]
impl DivAssign<usize> for Uint[src]
fn div_assign(&mut self, other: usize)[src]
impl Eq for Uint[src]
impl From<BigUint> for Uint[src]
impl From<Uint> for BigUint[src]
impl From<Uint> for Int[src]
impl From<u128> for Uint[src]
impl From<u16> for Uint[src]
impl From<u32> for Uint[src]
impl From<u64> for Uint[src]
impl From<u8> for Uint[src]
impl From<usize> for Uint[src]
impl FromPrimitive for Uint[src]
fn from_u128(x: u128) -> Option<Self>[src]
fn from_i128(x: i128) -> Option<Self>[src]
fn from_u64(x: u64) -> Option<Self>[src]
fn from_i64(x: i64) -> Option<Self>[src]
fn from_u32(x: u32) -> Option<Self>[src]
fn from_i32(x: i32) -> Option<Self>[src]
fn from_isize(n: isize) -> Option<Self>[src]
fn from_i8(n: i8) -> Option<Self>[src]
fn from_i16(n: i16) -> Option<Self>[src]
fn from_usize(n: usize) -> Option<Self>[src]
fn from_u8(n: u8) -> Option<Self>[src]
fn from_u16(n: u16) -> Option<Self>[src]
fn from_f32(n: f32) -> Option<Self>[src]
fn from_f64(n: f64) -> Option<Self>[src]
impl FromStr for Uint[src]
type Err = ParseBigIntError
The associated error which can be returned from parsing.
fn from_str(s: &str) -> Result<Self, ParseBigIntError>[src]
impl Hash for Uint[src]
fn hash<H: Hasher>(&self, state: &mut H)[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl<'_> Mul<&'_ Uint> for Uint[src]
type Output = Uint
The resulting type after applying the * operator.
fn mul(self, v: &Uint) -> Uint[src]
impl<'_, '_> Mul<&'_ Uint> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the * operator.
fn mul(self, v: &Uint) -> Uint[src]
impl<'_> Mul<&'_ u128> for Uint[src]
type Output = Uint
The resulting type after applying the * operator.
fn mul(self, v: &u128) -> Uint[src]
impl<'_, '_> Mul<&'_ u128> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the * operator.
fn mul(self, v: &u128) -> Uint[src]
impl<'_> Mul<&'_ u16> for Uint[src]
type Output = Uint
The resulting type after applying the * operator.
fn mul(self, v: &u16) -> Uint[src]
impl<'_, '_> Mul<&'_ u16> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the * operator.
fn mul(self, v: &u16) -> Uint[src]
impl<'_> Mul<&'_ u32> for Uint[src]
type Output = Uint
The resulting type after applying the * operator.
fn mul(self, v: &u32) -> Uint[src]
impl<'_, '_> Mul<&'_ u32> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the * operator.
fn mul(self, v: &u32) -> Uint[src]
impl<'_> Mul<&'_ u64> for Uint[src]
type Output = Uint
The resulting type after applying the * operator.
fn mul(self, v: &u64) -> Uint[src]
impl<'_, '_> Mul<&'_ u64> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the * operator.
fn mul(self, v: &u64) -> Uint[src]
impl<'_> Mul<&'_ u8> for Uint[src]
type Output = Uint
The resulting type after applying the * operator.
fn mul(self, v: &u8) -> Uint[src]
impl<'_, '_> Mul<&'_ u8> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the * operator.
fn mul(self, v: &u8) -> Uint[src]
impl<'_> Mul<&'_ usize> for Uint[src]
type Output = Uint
The resulting type after applying the * operator.
fn mul(self, v: &usize) -> Uint[src]
impl<'_, '_> Mul<&'_ usize> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the * operator.
fn mul(self, v: &usize) -> Uint[src]
impl Mul<Uint> for Uint[src]
type Output = Uint
The resulting type after applying the * operator.
fn mul(self, v: Uint) -> Uint[src]
impl<'_> Mul<Uint> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the * operator.
fn mul(self, v: Uint) -> Uint[src]
impl Mul<u128> for Uint[src]
type Output = Uint
The resulting type after applying the * operator.
fn mul(self, v: u128) -> Uint[src]
impl<'_> Mul<u128> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the * operator.
fn mul(self, v: u128) -> Uint[src]
impl Mul<u16> for Uint[src]
type Output = Uint
The resulting type after applying the * operator.
fn mul(self, v: u16) -> Uint[src]
impl<'_> Mul<u16> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the * operator.
fn mul(self, v: u16) -> Uint[src]
impl Mul<u32> for Uint[src]
type Output = Uint
The resulting type after applying the * operator.
fn mul(self, v: u32) -> Uint[src]
impl<'_> Mul<u32> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the * operator.
fn mul(self, v: u32) -> Uint[src]
impl Mul<u64> for Uint[src]
type Output = Uint
The resulting type after applying the * operator.
fn mul(self, v: u64) -> Uint[src]
impl<'_> Mul<u64> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the * operator.
fn mul(self, v: u64) -> Uint[src]
impl Mul<u8> for Uint[src]
type Output = Uint
The resulting type after applying the * operator.
fn mul(self, v: u8) -> Uint[src]
impl<'_> Mul<u8> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the * operator.
fn mul(self, v: u8) -> Uint[src]
impl Mul<usize> for Uint[src]
type Output = Uint
The resulting type after applying the * operator.
fn mul(self, v: usize) -> Uint[src]
impl<'_> Mul<usize> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the * operator.
fn mul(self, v: usize) -> Uint[src]
impl<'_> MulAssign<&'_ Uint> for Uint[src]
fn mul_assign(&mut self, other: &Uint)[src]
impl<'_> MulAssign<&'_ u128> for Uint[src]
fn mul_assign(&mut self, other: &u128)[src]
impl<'_> MulAssign<&'_ u16> for Uint[src]
fn mul_assign(&mut self, other: &u16)[src]
impl<'_> MulAssign<&'_ u32> for Uint[src]
fn mul_assign(&mut self, other: &u32)[src]
impl<'_> MulAssign<&'_ u64> for Uint[src]
fn mul_assign(&mut self, other: &u64)[src]
impl<'_> MulAssign<&'_ u8> for Uint[src]
fn mul_assign(&mut self, other: &u8)[src]
impl<'_> MulAssign<&'_ usize> for Uint[src]
fn mul_assign(&mut self, other: &usize)[src]
impl MulAssign<Uint> for Uint[src]
fn mul_assign(&mut self, other: Uint)[src]
impl MulAssign<u128> for Uint[src]
fn mul_assign(&mut self, other: u128)[src]
impl MulAssign<u16> for Uint[src]
fn mul_assign(&mut self, other: u16)[src]
impl MulAssign<u32> for Uint[src]
fn mul_assign(&mut self, other: u32)[src]
impl MulAssign<u64> for Uint[src]
fn mul_assign(&mut self, other: u64)[src]
impl MulAssign<u8> for Uint[src]
fn mul_assign(&mut self, other: u8)[src]
impl MulAssign<usize> for Uint[src]
fn mul_assign(&mut self, other: usize)[src]
impl Ord for Uint[src]
fn cmp(&self, other: &Self) -> Ordering[src]
#[must_use]
fn max(self, other: Self) -> Self1.21.0[src]
#[must_use]
fn min(self, other: Self) -> Self1.21.0[src]
#[must_use]
fn clamp(self, min: Self, max: Self) -> Self[src]
impl PartialEq<Int> for Uint[src]
impl PartialEq<Uint> for Uint[src]
impl PartialEq<Uint> for Int[src]
impl PartialEq<Uint> for i32[src]
impl PartialEq<Uint> for i64[src]
impl PartialEq<Uint> for i128[src]
impl PartialEq<Uint> for isize[src]
impl PartialEq<Uint> for u8[src]
impl PartialEq<Uint> for u16[src]
impl PartialEq<Uint> for u32[src]
impl PartialEq<Uint> for u64[src]
impl PartialEq<Uint> for u128[src]
impl PartialEq<Uint> for usize[src]
impl PartialEq<Uint> for i8[src]
impl PartialEq<Uint> for i16[src]
impl PartialEq<i128> for Uint[src]
impl PartialEq<i16> for Uint[src]
impl PartialEq<i32> for Uint[src]
impl PartialEq<i64> for Uint[src]
impl PartialEq<i8> for Uint[src]
impl PartialEq<isize> for Uint[src]
impl PartialEq<u128> for Uint[src]
impl PartialEq<u16> for Uint[src]
impl PartialEq<u32> for Uint[src]
impl PartialEq<u64> for Uint[src]
impl PartialEq<u8> for Uint[src]
impl PartialEq<usize> for Uint[src]
impl PartialOrd<Int> for Uint[src]
fn partial_cmp(&self, other: &Int) -> Option<Ordering>[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl PartialOrd<Uint> for Uint[src]
fn partial_cmp(&self, other: &Self) -> Option<Ordering>[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl PartialOrd<Uint> for Int[src]
fn partial_cmp(&self, other: &Uint) -> Option<Ordering>[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl PartialOrd<Uint> for i32[src]
fn partial_cmp(&self, other: &Uint) -> Option<Ordering>[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl PartialOrd<Uint> for i64[src]
fn partial_cmp(&self, other: &Uint) -> Option<Ordering>[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl PartialOrd<Uint> for i128[src]
fn partial_cmp(&self, other: &Uint) -> Option<Ordering>[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl PartialOrd<Uint> for isize[src]
fn partial_cmp(&self, other: &Uint) -> Option<Ordering>[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl PartialOrd<Uint> for u8[src]
fn partial_cmp(&self, other: &Uint) -> Option<Ordering>[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl PartialOrd<Uint> for u16[src]
fn partial_cmp(&self, other: &Uint) -> Option<Ordering>[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl PartialOrd<Uint> for u32[src]
fn partial_cmp(&self, other: &Uint) -> Option<Ordering>[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl PartialOrd<Uint> for u64[src]
fn partial_cmp(&self, other: &Uint) -> Option<Ordering>[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl PartialOrd<Uint> for u128[src]
fn partial_cmp(&self, other: &Uint) -> Option<Ordering>[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl PartialOrd<Uint> for usize[src]
fn partial_cmp(&self, other: &Uint) -> Option<Ordering>[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl PartialOrd<Uint> for i8[src]
fn partial_cmp(&self, other: &Uint) -> Option<Ordering>[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl PartialOrd<Uint> for i16[src]
fn partial_cmp(&self, other: &Uint) -> Option<Ordering>[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl PartialOrd<i128> for Uint[src]
fn partial_cmp(&self, other: &i128) -> Option<Ordering>[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl PartialOrd<i16> for Uint[src]
fn partial_cmp(&self, other: &i16) -> Option<Ordering>[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl PartialOrd<i32> for Uint[src]
fn partial_cmp(&self, other: &i32) -> Option<Ordering>[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl PartialOrd<i64> for Uint[src]
fn partial_cmp(&self, other: &i64) -> Option<Ordering>[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl PartialOrd<i8> for Uint[src]
fn partial_cmp(&self, other: &i8) -> Option<Ordering>[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl PartialOrd<isize> for Uint[src]
fn partial_cmp(&self, other: &isize) -> Option<Ordering>[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl PartialOrd<u128> for Uint[src]
fn partial_cmp(&self, other: &u128) -> Option<Ordering>[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl PartialOrd<u16> for Uint[src]
fn partial_cmp(&self, other: &u16) -> Option<Ordering>[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl PartialOrd<u32> for Uint[src]
fn partial_cmp(&self, other: &u32) -> Option<Ordering>[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl PartialOrd<u64> for Uint[src]
fn partial_cmp(&self, other: &u64) -> Option<Ordering>[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl PartialOrd<u8> for Uint[src]
fn partial_cmp(&self, other: &u8) -> Option<Ordering>[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl PartialOrd<usize> for Uint[src]
fn partial_cmp(&self, other: &usize) -> Option<Ordering>[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl<'_> Rem<&'_ Uint> for Uint[src]
type Output = Uint
The resulting type after applying the % operator.
fn rem(self, v: &Uint) -> Uint[src]
impl<'_, '_> Rem<&'_ Uint> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the % operator.
fn rem(self, v: &Uint) -> Uint[src]
impl<'_> Rem<&'_ u128> for Uint[src]
type Output = Uint
The resulting type after applying the % operator.
fn rem(self, v: &u128) -> Uint[src]
impl<'_, '_> Rem<&'_ u128> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the % operator.
fn rem(self, v: &u128) -> Uint[src]
impl<'_> Rem<&'_ u16> for Uint[src]
type Output = Uint
The resulting type after applying the % operator.
fn rem(self, v: &u16) -> Uint[src]
impl<'_, '_> Rem<&'_ u16> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the % operator.
fn rem(self, v: &u16) -> Uint[src]
impl<'_> Rem<&'_ u32> for Uint[src]
type Output = Uint
The resulting type after applying the % operator.
fn rem(self, v: &u32) -> Uint[src]
impl<'_, '_> Rem<&'_ u32> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the % operator.
fn rem(self, v: &u32) -> Uint[src]
impl<'_> Rem<&'_ u64> for Uint[src]
type Output = Uint
The resulting type after applying the % operator.
fn rem(self, v: &u64) -> Uint[src]
impl<'_, '_> Rem<&'_ u64> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the % operator.
fn rem(self, v: &u64) -> Uint[src]
impl<'_> Rem<&'_ u8> for Uint[src]
type Output = Uint
The resulting type after applying the % operator.
fn rem(self, v: &u8) -> Uint[src]
impl<'_, '_> Rem<&'_ u8> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the % operator.
fn rem(self, v: &u8) -> Uint[src]
impl<'_> Rem<&'_ usize> for Uint[src]
type Output = Uint
The resulting type after applying the % operator.
fn rem(self, v: &usize) -> Uint[src]
impl<'_, '_> Rem<&'_ usize> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the % operator.
fn rem(self, v: &usize) -> Uint[src]
impl Rem<Uint> for Uint[src]
type Output = Uint
The resulting type after applying the % operator.
fn rem(self, v: Uint) -> Uint[src]
impl<'_> Rem<Uint> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the % operator.
fn rem(self, v: Uint) -> Uint[src]
impl Rem<u128> for Uint[src]
type Output = Uint
The resulting type after applying the % operator.
fn rem(self, v: u128) -> Uint[src]
impl<'_> Rem<u128> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the % operator.
fn rem(self, v: u128) -> Uint[src]
impl Rem<u16> for Uint[src]
type Output = Uint
The resulting type after applying the % operator.
fn rem(self, v: u16) -> Uint[src]
impl<'_> Rem<u16> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the % operator.
fn rem(self, v: u16) -> Uint[src]
impl Rem<u32> for Uint[src]
type Output = Uint
The resulting type after applying the % operator.
fn rem(self, v: u32) -> Uint[src]
impl<'_> Rem<u32> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the % operator.
fn rem(self, v: u32) -> Uint[src]
impl Rem<u64> for Uint[src]
type Output = Uint
The resulting type after applying the % operator.
fn rem(self, v: u64) -> Uint[src]
impl<'_> Rem<u64> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the % operator.
fn rem(self, v: u64) -> Uint[src]
impl Rem<u8> for Uint[src]
type Output = Uint
The resulting type after applying the % operator.
fn rem(self, v: u8) -> Uint[src]
impl<'_> Rem<u8> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the % operator.
fn rem(self, v: u8) -> Uint[src]
impl Rem<usize> for Uint[src]
type Output = Uint
The resulting type after applying the % operator.
fn rem(self, v: usize) -> Uint[src]
impl<'_> Rem<usize> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the % operator.
fn rem(self, v: usize) -> Uint[src]
impl<'_> RemAssign<&'_ Uint> for Uint[src]
fn rem_assign(&mut self, other: &Uint)[src]
impl<'_> RemAssign<&'_ u128> for Uint[src]
fn rem_assign(&mut self, other: &u128)[src]
impl<'_> RemAssign<&'_ u16> for Uint[src]
fn rem_assign(&mut self, other: &u16)[src]
impl<'_> RemAssign<&'_ u32> for Uint[src]
fn rem_assign(&mut self, other: &u32)[src]
impl<'_> RemAssign<&'_ u64> for Uint[src]
fn rem_assign(&mut self, other: &u64)[src]
impl<'_> RemAssign<&'_ u8> for Uint[src]
fn rem_assign(&mut self, other: &u8)[src]
impl<'_> RemAssign<&'_ usize> for Uint[src]
fn rem_assign(&mut self, other: &usize)[src]
impl RemAssign<Uint> for Uint[src]
fn rem_assign(&mut self, other: Uint)[src]
impl RemAssign<u128> for Uint[src]
fn rem_assign(&mut self, other: u128)[src]
impl RemAssign<u16> for Uint[src]
fn rem_assign(&mut self, other: u16)[src]
impl RemAssign<u32> for Uint[src]
fn rem_assign(&mut self, other: u32)[src]
impl RemAssign<u64> for Uint[src]
fn rem_assign(&mut self, other: u64)[src]
impl RemAssign<u8> for Uint[src]
fn rem_assign(&mut self, other: u8)[src]
impl RemAssign<usize> for Uint[src]
fn rem_assign(&mut self, other: usize)[src]
impl<'_> Sub<&'_ Uint> for Uint[src]
type Output = Uint
The resulting type after applying the - operator.
fn sub(self, v: &Uint) -> Uint[src]
impl<'_, '_> Sub<&'_ Uint> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the - operator.
fn sub(self, v: &Uint) -> Uint[src]
impl<'_> Sub<&'_ u128> for Uint[src]
type Output = Uint
The resulting type after applying the - operator.
fn sub(self, v: &u128) -> Uint[src]
impl<'_, '_> Sub<&'_ u128> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the - operator.
fn sub(self, v: &u128) -> Uint[src]
impl<'_> Sub<&'_ u16> for Uint[src]
type Output = Uint
The resulting type after applying the - operator.
fn sub(self, v: &u16) -> Uint[src]
impl<'_, '_> Sub<&'_ u16> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the - operator.
fn sub(self, v: &u16) -> Uint[src]
impl<'_> Sub<&'_ u32> for Uint[src]
type Output = Uint
The resulting type after applying the - operator.
fn sub(self, v: &u32) -> Uint[src]
impl<'_, '_> Sub<&'_ u32> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the - operator.
fn sub(self, v: &u32) -> Uint[src]
impl<'_> Sub<&'_ u64> for Uint[src]
type Output = Uint
The resulting type after applying the - operator.
fn sub(self, v: &u64) -> Uint[src]
impl<'_, '_> Sub<&'_ u64> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the - operator.
fn sub(self, v: &u64) -> Uint[src]
impl<'_> Sub<&'_ u8> for Uint[src]
type Output = Uint
The resulting type after applying the - operator.
fn sub(self, v: &u8) -> Uint[src]
impl<'_, '_> Sub<&'_ u8> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the - operator.
fn sub(self, v: &u8) -> Uint[src]
impl<'_> Sub<&'_ usize> for Uint[src]
type Output = Uint
The resulting type after applying the - operator.
fn sub(self, v: &usize) -> Uint[src]
impl<'_, '_> Sub<&'_ usize> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the - operator.
fn sub(self, v: &usize) -> Uint[src]
impl Sub<Uint> for Uint[src]
type Output = Uint
The resulting type after applying the - operator.
fn sub(self, v: Uint) -> Uint[src]
impl<'_> Sub<Uint> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the - operator.
fn sub(self, v: Uint) -> Uint[src]
impl Sub<u128> for Uint[src]
type Output = Uint
The resulting type after applying the - operator.
fn sub(self, v: u128) -> Uint[src]
impl<'_> Sub<u128> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the - operator.
fn sub(self, v: u128) -> Uint[src]
impl Sub<u16> for Uint[src]
type Output = Uint
The resulting type after applying the - operator.
fn sub(self, v: u16) -> Uint[src]
impl<'_> Sub<u16> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the - operator.
fn sub(self, v: u16) -> Uint[src]
impl Sub<u32> for Uint[src]
type Output = Uint
The resulting type after applying the - operator.
fn sub(self, v: u32) -> Uint[src]
impl<'_> Sub<u32> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the - operator.
fn sub(self, v: u32) -> Uint[src]
impl Sub<u64> for Uint[src]
type Output = Uint
The resulting type after applying the - operator.
fn sub(self, v: u64) -> Uint[src]
impl<'_> Sub<u64> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the - operator.
fn sub(self, v: u64) -> Uint[src]
impl Sub<u8> for Uint[src]
type Output = Uint
The resulting type after applying the - operator.
fn sub(self, v: u8) -> Uint[src]
impl<'_> Sub<u8> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the - operator.
fn sub(self, v: u8) -> Uint[src]
impl Sub<usize> for Uint[src]
type Output = Uint
The resulting type after applying the - operator.
fn sub(self, v: usize) -> Uint[src]
impl<'_> Sub<usize> for &'_ Uint[src]
type Output = Uint
The resulting type after applying the - operator.
fn sub(self, v: usize) -> Uint[src]
impl<'_> SubAssign<&'_ Uint> for Uint[src]
fn sub_assign(&mut self, other: &Uint)[src]
impl<'_> SubAssign<&'_ u128> for Uint[src]
fn sub_assign(&mut self, other: &u128)[src]
impl<'_> SubAssign<&'_ u16> for Uint[src]
fn sub_assign(&mut self, other: &u16)[src]
impl<'_> SubAssign<&'_ u32> for Uint[src]
fn sub_assign(&mut self, other: &u32)[src]
impl<'_> SubAssign<&'_ u64> for Uint[src]
fn sub_assign(&mut self, other: &u64)[src]
impl<'_> SubAssign<&'_ u8> for Uint[src]
fn sub_assign(&mut self, other: &u8)[src]
impl<'_> SubAssign<&'_ usize> for Uint[src]
fn sub_assign(&mut self, other: &usize)[src]
impl SubAssign<Uint> for Uint[src]
fn sub_assign(&mut self, other: Uint)[src]
impl SubAssign<u128> for Uint[src]
fn sub_assign(&mut self, other: u128)[src]
impl SubAssign<u16> for Uint[src]
fn sub_assign(&mut self, other: u16)[src]
impl SubAssign<u32> for Uint[src]
fn sub_assign(&mut self, other: u32)[src]
impl SubAssign<u64> for Uint[src]
fn sub_assign(&mut self, other: u64)[src]
impl SubAssign<u8> for Uint[src]
fn sub_assign(&mut self, other: u8)[src]
impl SubAssign<usize> for Uint[src]
fn sub_assign(&mut self, other: usize)[src]
impl ToPrimitive for Uint[src]
fn to_u128(&self) -> Option<u128>[src]
fn to_i128(&self) -> Option<i128>[src]
fn to_u64(&self) -> Option<u64>[src]
fn to_i64(&self) -> Option<i64>[src]
fn to_u32(&self) -> Option<u32>[src]
fn to_i32(&self) -> Option<i32>[src]
fn to_isize(&self) -> Option<isize>[src]
fn to_i8(&self) -> Option<i8>[src]
fn to_i16(&self) -> Option<i16>[src]
fn to_usize(&self) -> Option<usize>[src]
fn to_u8(&self) -> Option<u8>[src]
fn to_u16(&self) -> Option<u16>[src]
fn to_f32(&self) -> Option<f32>[src]
fn to_f64(&self) -> Option<f64>[src]
impl TryFrom<Int> for Uint[src]
type Error = IntIsNegativeError
The type returned in the event of a conversion error.
fn try_from(v: Int) -> Result<Self, Self::Error>[src]
Fails on negative numbers.
impl TryFrom<i128> for Uint[src]
type Error = IntIsNegativeError
The type returned in the event of a conversion error.
fn try_from(x: i128) -> Result<Self, Self::Error>[src]
impl TryFrom<i16> for Uint[src]
type Error = IntIsNegativeError
The type returned in the event of a conversion error.
fn try_from(x: i16) -> Result<Self, Self::Error>[src]
impl TryFrom<i32> for Uint[src]
type Error = IntIsNegativeError
The type returned in the event of a conversion error.
fn try_from(x: i32) -> Result<Self, Self::Error>[src]
impl TryFrom<i64> for Uint[src]
type Error = IntIsNegativeError
The type returned in the event of a conversion error.
fn try_from(x: i64) -> Result<Self, Self::Error>[src]
impl TryFrom<i8> for Uint[src]
type Error = IntIsNegativeError
The type returned in the event of a conversion error.
fn try_from(x: i8) -> Result<Self, Self::Error>[src]
impl TryFrom<isize> for Uint[src]
Auto Trait Implementations
impl RefUnwindSafe for Uint
impl Send for Uint
impl Sync for Uint
impl Unpin for Uint
impl UnwindSafe for Uint
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, Rhs> NumAssignOps<Rhs> for T where
T: AddAssign<Rhs> + SubAssign<Rhs> + MulAssign<Rhs> + DivAssign<Rhs> + RemAssign<Rhs>, [src]
T: AddAssign<Rhs> + SubAssign<Rhs> + MulAssign<Rhs> + DivAssign<Rhs> + RemAssign<Rhs>,
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>, [src]
T: Sub<Rhs, Output = Output> + Mul<Rhs, Output = Output> + Div<Rhs, Output = Output> + Add<Rhs, Output = Output> + Rem<Rhs, Output = Output>,
impl<T, Base> RefNum<Base> for T where
T: NumOps<Base, Base> + NumOps<&'r Base, Base>, [src]
T: NumOps<Base, Base> + NumOps<&'r Base, Base>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,