[]Struct ckb_types::U128

pub struct U128(pub [u64; 2]);

Fixed non-negative integer type.

Implementations

impl U128

pub const fn zero() -> U128

Create a new fixed uint and value is zero.

pub const fn one() -> U128

Create a new fixed uint and value is one.

pub fn is_zero(&self) -> bool

Test if a fixed uint is zero.

pub fn is_max(&self) -> bool

Test if a fixed uint is the max value.

pub const fn count_bits() -> u64

Return the count of bits.

pub fn bit(&self, index: usize) -> Option<bool>

Return a specific bit, or return None when overlows.

pub fn set_bit(&mut self, index: usize, value: bool) -> bool

Set a specific bit. Return false when overflows.

pub fn highest_one(&self) -> Option<usize>

Return the highest bit which is one.

pub fn lowest_one(&self) -> Option<usize>

Return the lowest bit which is one.

pub const fn count_bytes() -> u64

Return the count of bytes.

pub fn byte(&self, index: usize) -> Option<u8>

Return a specific byte, or return None when overlows.

pub fn set_byte(&mut self, index: usize, byte: u8) -> bool

Set a specific byte. Return false when overflows;

pub fn highest_nonzero_byte(&self) -> Option<usize>

Return the highest byte which is nonzero.

pub fn lowest_nonzero_byte(&self) -> Option<usize>

Return the lowest byte which is nonzero.

pub fn complete_mul(&self, other: &U128) -> (U128, U128)

Calculates the multiplication of self and other.

Returns a tuple: (low, high), low is the low part of the multiplication, high is the low part of the multiplication.

The multiplication is equal to (high << Self::count_bits()) + low.

pub fn complete_div(&self, other: &U128) -> (U128, U128)

Calculates both the quotient and the remainder when self is divided by other.

Returns a tuple: (quotient, remainder).

The self is equal to quotient * other + remainder.

pub const fn size_of() -> usize

Return the size used by this type in bytes, actually.

This size is greater than or equal to the bytes of this fixed type.

pub fn gcd(&self, other: &U128) -> U128

Calculates the Greatest Common Divisor (GCD).

pub fn from_little_endian(input: &[u8]) -> Result<U128, FixedUintError>

Convert from little-endian slice.

pub fn from_big_endian(input: &[u8]) -> Result<U128, FixedUintError>

Convert from big-endian slice.

pub fn into_little_endian(
    &self,
    output: &mut [u8]
) -> Result<(), FixedUintError>

Convert into little-endian slice.

pub fn into_big_endian(&self, output: &mut [u8]) -> Result<(), FixedUintError>

Convert into big-endian slice.

pub fn from_bin_str(input: &str) -> Result<U128, FixedUintError>

Convert from a binary string.

pub fn from_oct_str(input: &str) -> Result<U128, FixedUintError>

Convert from a octal string.

pub fn from_hex_str(input: &str) -> Result<U128, FixedUintError>

Convert from a hexadecimal string.

pub fn from_dec_str(input: &str) -> Result<U128, FixedUintError>

Convert from a decimal string.

pub const fn min_value() -> U128

Returns the smallest value that can be represented by this integer type.

pub const fn max_value() -> U128

Returns the largest value that can be represented by this integer type.

pub fn count_ones(&self) -> u32

Returns the number of ones in the binary representation of self.

pub fn count_zeros(&self) -> u32

Returns the number of zeros in the binary representation of self.

pub fn leading_zeros(&self) -> u32

Returns the number of leading zeros in the binary representation of self.

pub fn trailing_zeros(&self) -> u32

Returns the number of trailing zeros in the binary representation of self.

pub fn rotate_left(&self, n: u32) -> U128

Shifts the bits to the left by a specified amount, n, wrapping the truncated bits to the end of the resulting integer.

Please note this isn't the same operation as <<!

pub fn rotate_right(&self, n: u32) -> U128

Shifts the bits to the right by a specified amount, n, wrapping the truncated bits to the beginning of the resulting integer.

Please note this isn't the same operation as >>!

pub fn swap_bytes(self) -> U128

Reverses the byte order of the integer.

pub fn to_be_bytes(&self) -> [u8; 16]

Return the memory representation of this integer as a byte array in big-endian (network) byte order.

pub fn to_le_bytes(&self) -> [u8; 16]

Return the memory representation of this integer as a byte array in little-endian byte order.

pub fn to_ne_bytes(&self) -> [u8; 16]

Return the memory representation of this integer as a byte array in native byte order.

As the target platform's native endianness is used, portable code should use to_be_bytes or to_le_bytes, as appropriate, instead.

pub fn from_be_bytes(bytes: &[u8; 16]) -> U128

Create an integer value from its representation as a byte array in big endian.

pub fn from_le_bytes(bytes: &[u8; 16]) -> U128

Create an integer value from its representation as a byte array in little endian.

pub fn from_ne_bytes(bytes: &[u8; 16]) -> U128

Create an integer value from its memory representation as a byte array in native endianness.

As the target platform's native endianness is used, portable code likely wants to use from_be_bytes or from_le_bytes, as appropriate instead.

pub fn pow(&self, exp: u32) -> U128

Raises self to the power of exp, using exponentiation by squaring.

pub fn is_power_of_two(&self) -> bool

Returns true if and only if self == 2^k for some k.

pub fn next_power_of_two(&self) -> U128

Returns the smallest power of two greater than or equal to self.

When return value overflows (i.e., self > (1 << (N-1)) for type uN), it panics in debug mode and return value is wrapped to 0 in release mode (the only situation in which method can return 0).

pub fn checked_add(&self, rhs: &U128) -> Option<U128>

Checked integer addition. Computes self + rhs, returning None if overflow occurred.

pub fn checked_sub(&self, rhs: &U128) -> Option<U128>

Checked integer subtraction. Computes self - rhs, returning None if overflow occurred.

pub fn checked_mul(&self, rhs: &U128) -> Option<U128>

Checked integer multiplication. Computes self * rhs, returning None if overflow occurred.

pub fn checked_div(&self, rhs: &U128) -> Option<U128>

Checked integer division. Computes self / rhs, returning None if rhs == 0.

pub fn checked_rem(&self, rhs: &U128) -> Option<U128>

Checked integer remainder. Computes self % rhs, returning None if rhs == 0.

pub fn checked_next_power_of_two(&self) -> Option<U128>

Returns the smallest power of two greater than or equal to n. If the next power of two is greater than the type's maximum value, None is returned, otherwise the power of two is wrapped in Some.

pub fn checked_pow(&self, exp: u32) -> Option<U128>

Checked exponentiation. Computes self.pow(exp), returning None if overflow occurred.

pub fn checked_shl(&self, rhs: u128) -> Option<U128>

Checked shift left. Computes self << rhs, returning None if rhs is larger than or equal to the number of bits in self.

pub fn checked_shr(&self, rhs: u128) -> Option<U128>

Checked shift right. Computes self >> rhs, returning None if rhs is larger than or equal to the number of bits in self.

pub fn checked_neg(&self) -> Option<U128>

Checked negation. Computes -self, returning None unless self == 0. Note that negating any positive integer will overflow.

pub fn saturating_add(&self, rhs: &U128) -> U128

Saturating integer addition. Computes self + rhs, saturating at the numeric bounds instead of overflowing.

pub fn saturating_sub(&self, rhs: &U128) -> U128

Checked integer subtraction. Computes self - rhs, returning None if overflow occurred.

pub fn saturating_mul(&self, rhs: &U128) -> U128

Checked integer multiplication. Computes self * rhs, returning None if overflow occurred.

pub fn saturating_pow(&self, exp: u32) -> U128

Saturating integer exponentiation. Computes self.pow(exp), saturating at the numeric bounds instead of overflowing.

pub fn overflowing_add(&self, rhs: &U128) -> (U128, bool)

Calculates self + rhs.

Returns a tuple of the addition along with a boolean indicating whether an arithmetic overflow would occur. If an overflow would have occurred then the wrapped value is returned.

pub fn overflowing_sub(&self, rhs: &U128) -> (U128, bool)

Calculates self - rhs.

Returns a tuple of the subtraction along with a boolean indicating whether an arithmetic overflow would occur. If an overflow would have occurred then the wrapped value is returned.

pub fn overflowing_mul(&self, rhs: &U128) -> (U128, bool)

Calculates the multiplication of self and rhs.

Returns a tuple of the multiplication along with a boolean indicating whether an arithmetic overflow would occur. If an overflow would have occurred then the wrapped value is returned.

pub fn overflowing_div(&self, rhs: &U128) -> (U128, bool)

Calculates the divisor when self is divided by rhs.

Returns a tuple of the divisor along with a boolean indicating whether an arithmetic overflow would occur. Note that for unsigned integers overflow never occurs, so the second value is always false.

Panics

This function will panic if rhs is 0.

pub fn overflowing_rem(&self, rhs: &U128) -> (U128, bool)

Calculates the remainder when self is divided by rhs.

Returns a tuple of the remainder after dividing along with a boolean indicating whether an arithmetic overflow would occur. Note that for unsigned integers overflow never occurs, so the second value is always false.

Panics

This function will panic if rhs is 0.

pub fn overflowing_pow(&self, exp: u32) -> (U128, bool)

Raises self to the power of exp, using exponentiation by squaring. Returns a tuple of the exponentiation along with a bool indicating whether an overflow happened.

pub fn overflowing_shl(&self, rhs: u128) -> (U128, bool)

Shifts self left by rhs bits.

Returns a tuple of the shifted version of self along with a boolean indicating whether the shift value was larger than or equal to the number of bits. If the shift value is too large, then value is masked (N-1) where N is the number of bits, and this value is then used to perform the shift.

pub fn overflowing_shr(&self, rhs: u128) -> (U128, bool)

Shifts self right by rhs bits.

Returns a tuple of the shifted version of self along with a boolean indicating whether the shift value was larger than or equal to the number of bits. If the shift value is too large, then value is masked (N-1) where N is the number of bits, and this value is then used to perform the shift.

pub fn overflowing_neg(&self) -> (U128, bool)

Negates self in an overflowing fashion.

Returns !self + 1 using wrapping operations to return the value that represents the negation of this unsigned value. Note that for positive unsigned values overflow always occurs, but negating 0 does not overflow.

pub fn random<R>(rng: &mut R) -> U128 where
    R: RngCore

Create a random fixed uint with a input random core.

pub fn thread_random() -> U128

Create a random fixed uint.

Trait Implementations

impl<'a> Add<&'a U128> for U128

type Output = U128

The resulting type after applying the + operator.

impl<'a, 'b> Add<&'b U128> for &'a U128

type Output = U128

The resulting type after applying the + operator.

impl<'a, Rhs> Add<Rhs> for &'a U128 where
    Rhs: Into<U128>, 

type Output = U128

The resulting type after applying the + operator.

impl<Rhs> Add<Rhs> for U128 where
    Rhs: Into<U128>, 

type Output = U128

The resulting type after applying the + operator.

impl<'a> AddAssign<&'a U128> for U128

impl<Rhs> AddAssign<Rhs> for U128 where
    Rhs: Into<U128>, 

impl AsByteSliceMut for U128

impl Binary for U128

impl<'a> BitAnd<&'a U128> for U128

type Output = U128

The resulting type after applying the & operator.

impl<'a, 'b> BitAnd<&'b U128> for &'a U128

type Output = U128

The resulting type after applying the & operator.

impl<Rhs> BitAnd<Rhs> for U128 where
    Rhs: Into<U128>, 

type Output = U128

The resulting type after applying the & operator.

impl<'a, Rhs> BitAnd<Rhs> for &'a U128 where
    Rhs: Into<U128>, 

type Output = U128

The resulting type after applying the & operator.

impl<'a> BitAndAssign<&'a U128> for U128

impl<Rhs> BitAndAssign<Rhs> for U128 where
    Rhs: Into<U128>, 

impl<'a> BitOr<&'a U128> for U128

type Output = U128

The resulting type after applying the | operator.

impl<'a, 'b> BitOr<&'b U128> for &'a U128

type Output = U128

The resulting type after applying the | operator.

impl<'a, Rhs> BitOr<Rhs> for &'a U128 where
    Rhs: Into<U128>, 

type Output = U128

The resulting type after applying the | operator.

impl<Rhs> BitOr<Rhs> for U128 where
    Rhs: Into<U128>, 

type Output = U128

The resulting type after applying the | operator.

impl<'a> BitOrAssign<&'a U128> for U128

impl<Rhs> BitOrAssign<Rhs> for U128 where
    Rhs: Into<U128>, 

impl<'a> BitXor<&'a U128> for U128

type Output = U128

The resulting type after applying the ^ operator.

impl<'a, 'b> BitXor<&'b U128> for &'a U128

type Output = U128

The resulting type after applying the ^ operator.

impl<Rhs> BitXor<Rhs> for U128 where
    Rhs: Into<U128>, 

type Output = U128

The resulting type after applying the ^ operator.

impl<'a, Rhs> BitXor<Rhs> for &'a U128 where
    Rhs: Into<U128>, 

type Output = U128

The resulting type after applying the ^ operator.

impl<'a> BitXorAssign<&'a U128> for U128

impl<Rhs> BitXorAssign<Rhs> for U128 where
    Rhs: Into<U128>, 

impl Clone for U128

impl Debug for U128

impl Default for U128

impl<'de> Deserialize<'de> for U128

impl Display for U128

impl<'a> Div<&'a U128> for U128

type Output = U128

The resulting type after applying the / operator.

impl<'a, 'b> Div<&'b U128> for &'a U128

type Output = U128

The resulting type after applying the / operator.

impl<'a, Rhs> Div<Rhs> for &'a U128 where
    Rhs: Into<U128>, 

type Output = U128

The resulting type after applying the / operator.

impl<Rhs> Div<Rhs> for U128 where
    Rhs: Into<U128>, 

type Output = U128

The resulting type after applying the / operator.

impl<'a> DivAssign<&'a U128> for U128

impl<Rhs> DivAssign<Rhs> for U128 where
    Rhs: Into<U128>, 

impl Eq for U128

impl<'a> From<&'a u128> for U128

impl<'a> From<&'a u16> for U128

impl<'a> From<&'a u32> for U128

impl<'a> From<&'a u64> for U128

impl<'a> From<&'a u8> for U128

impl From<bool> for U128

impl From<u128> for U128

impl From<u16> for U128

impl From<u32> for U128

impl From<u64> for U128

impl From<u8> for U128

impl Hash for U128

impl HeapSizeOf for U128

impl LowerHex for U128

impl<'a> Mul<&'a U128> for U128

type Output = U128

The resulting type after applying the * operator.

impl<'a, 'b> Mul<&'b U128> for &'a U128

type Output = U128

The resulting type after applying the * operator.

impl<'a, Rhs> Mul<Rhs> for &'a U128 where
    Rhs: Into<U128>, 

type Output = U128

The resulting type after applying the * operator.

impl<Rhs> Mul<Rhs> for U128 where
    Rhs: Into<U128>, 

type Output = U128

The resulting type after applying the * operator.

impl<'a> MulAssign<&'a U128> for U128

impl<Rhs> MulAssign<Rhs> for U128 where
    Rhs: Into<U128>, 

impl<'a> Not for &'a U128

type Output = U128

The resulting type after applying the ! operator.

impl Not for U128

type Output = U128

The resulting type after applying the ! operator.

impl Octal for U128

impl Ord for U128

impl PartialEq<U128> for U128

impl PartialOrd<U128> for U128

impl<'a> Product<&'a U128> for U128

impl Product<U128> for U128

impl<'a> Rem<&'a U128> for U128

type Output = U128

The resulting type after applying the % operator.

impl<'a, 'b> Rem<&'b U128> for &'a U128

type Output = U128

The resulting type after applying the % operator.

impl<'a, Rhs> Rem<Rhs> for &'a U128 where
    Rhs: Into<U128>, 

type Output = U128

The resulting type after applying the % operator.

impl<Rhs> Rem<Rhs> for U128 where
    Rhs: Into<U128>, 

type Output = U128

The resulting type after applying the % operator.

impl<'a> RemAssign<&'a U128> for U128

impl<Rhs> RemAssign<Rhs> for U128 where
    Rhs: Into<U128>, 

impl Serialize for U128

impl<'a, 'b> Shl<&'a i128> for &'b U128

type Output = U128

The resulting type after applying the << operator.

impl<'a> Shl<&'a i128> for U128

type Output = U128

The resulting type after applying the << operator.

impl<'a, 'b> Shl<&'a i16> for &'b U128

type Output = U128

The resulting type after applying the << operator.

impl<'a> Shl<&'a i16> for U128

type Output = U128

The resulting type after applying the << operator.

impl<'a> Shl<&'a i32> for U128

type Output = U128

The resulting type after applying the << operator.

impl<'a, 'b> Shl<&'a i32> for &'b U128

type Output = U128

The resulting type after applying the << operator.

impl<'a, 'b> Shl<&'a i64> for &'b U128

type Output = U128

The resulting type after applying the << operator.

impl<'a> Shl<&'a i64> for U128

type Output = U128

The resulting type after applying the << operator.

impl<'a> Shl<&'a i8> for U128

type Output = U128

The resulting type after applying the << operator.

impl<'a, 'b> Shl<&'a i8> for &'b U128

type Output = U128

The resulting type after applying the << operator.

impl<'a, 'b> Shl<&'a isize> for &'b U128

type Output = U128

The resulting type after applying the << operator.

impl<'a> Shl<&'a isize> for U128

type Output = U128

The resulting type after applying the << operator.

impl<'a, 'b> Shl<&'a u128> for &'b U128

type Output = U128

The resulting type after applying the << operator.

impl<'a> Shl<&'a u128> for U128

type Output = U128

The resulting type after applying the << operator.

impl<'a, 'b> Shl<&'a u16> for &'b U128

type Output = U128

The resulting type after applying the << operator.

impl<'a> Shl<&'a u16> for U128

type Output = U128

The resulting type after applying the << operator.

impl<'a> Shl<&'a u32> for U128

type Output = U128

The resulting type after applying the << operator.

impl<'a, 'b> Shl<&'a u32> for &'b U128

type Output = U128

The resulting type after applying the << operator.

impl<'a> Shl<&'a u64> for U128

type Output = U128

The resulting type after applying the << operator.

impl<'a, 'b> Shl<&'a u64> for &'b U128

type Output = U128

The resulting type after applying the << operator.

impl<'a> Shl<&'a u8> for U128

type Output = U128

The resulting type after applying the << operator.

impl<'a, 'b> Shl<&'a u8> for &'b U128

type Output = U128

The resulting type after applying the << operator.

impl<'a> Shl<&'a usize> for U128

type Output = U128

The resulting type after applying the << operator.

impl<'a, 'b> Shl<&'a usize> for &'b U128

type Output = U128

The resulting type after applying the << operator.

impl Shl<i128> for U128

type Output = U128

The resulting type after applying the << operator.

impl<'a> Shl<i128> for &'a U128

type Output = U128

The resulting type after applying the << operator.

impl Shl<i16> for U128

type Output = U128

The resulting type after applying the << operator.

impl<'a> Shl<i16> for &'a U128

type Output = U128

The resulting type after applying the << operator.

impl<'a> Shl<i32> for &'a U128

type Output = U128

The resulting type after applying the << operator.

impl Shl<i32> for U128

type Output = U128

The resulting type after applying the << operator.

impl<'a> Shl<i64> for &'a U128

type Output = U128

The resulting type after applying the << operator.

impl Shl<i64> for U128

type Output = U128

The resulting type after applying the << operator.

impl<'a> Shl<i8> for &'a U128

type Output = U128

The resulting type after applying the << operator.

impl Shl<i8> for U128

type Output = U128

The resulting type after applying the << operator.

impl Shl<isize> for U128

type Output = U128

The resulting type after applying the << operator.

impl<'a> Shl<isize> for &'a U128

type Output = U128

The resulting type after applying the << operator.

impl<'a> Shl<u128> for &'a U128

type Output = U128

The resulting type after applying the << operator.

impl Shl<u128> for U128

type Output = U128

The resulting type after applying the << operator.

impl<'a> Shl<u16> for &'a U128

type Output = U128

The resulting type after applying the << operator.

impl Shl<u16> for U128

type Output = U128

The resulting type after applying the << operator.

impl<'a> Shl<u32> for &'a U128

type Output = U128

The resulting type after applying the << operator.

impl Shl<u32> for U128

type Output = U128

The resulting type after applying the << operator.

impl<'a> Shl<u64> for &'a U128

type Output = U128

The resulting type after applying the << operator.

impl Shl<u64> for U128

type Output = U128

The resulting type after applying the << operator.

impl<'a> Shl<u8> for &'a U128

type Output = U128

The resulting type after applying the << operator.

impl Shl<u8> for U128

type Output = U128

The resulting type after applying the << operator.

impl Shl<usize> for U128

type Output = U128

The resulting type after applying the << operator.

impl<'a> Shl<usize> for &'a U128

type Output = U128

The resulting type after applying the << operator.

impl<'a> ShlAssign<&'a i128> for U128

impl<'a> ShlAssign<&'a i16> for U128

impl<'a> ShlAssign<&'a i32> for U128

impl<'a> ShlAssign<&'a i64> for U128

impl<'a> ShlAssign<&'a i8> for U128

impl<'a> ShlAssign<&'a isize> for U128

impl<'a> ShlAssign<&'a u128> for U128

impl<'a> ShlAssign<&'a u16> for U128

impl<'a> ShlAssign<&'a u32> for U128

impl<'a> ShlAssign<&'a u64> for U128

impl<'a> ShlAssign<&'a u8> for U128

impl<'a> ShlAssign<&'a usize> for U128

impl ShlAssign<i128> for U128

impl ShlAssign<i16> for U128

impl ShlAssign<i32> for U128

impl ShlAssign<i64> for U128

impl ShlAssign<i8> for U128

impl ShlAssign<isize> for U128

impl ShlAssign<u128> for U128

impl ShlAssign<u16> for U128

impl ShlAssign<u32> for U128

impl ShlAssign<u64> for U128

impl ShlAssign<u8> for U128

impl ShlAssign<usize> for U128

impl<'a> Shr<&'a i128> for U128

type Output = U128

The resulting type after applying the >> operator.

impl<'a, 'b> Shr<&'a i128> for &'b U128

type Output = U128

The resulting type after applying the >> operator.

impl<'a> Shr<&'a i16> for U128

type Output = U128

The resulting type after applying the >> operator.

impl<'a, 'b> Shr<&'a i16> for &'b U128

type Output = U128

The resulting type after applying the >> operator.

impl<'a, 'b> Shr<&'a i32> for &'b U128

type Output = U128

The resulting type after applying the >> operator.

impl<'a> Shr<&'a i32> for U128

type Output = U128

The resulting type after applying the >> operator.

impl<'a, 'b> Shr<&'a i64> for &'b U128

type Output = U128

The resulting type after applying the >> operator.

impl<'a> Shr<&'a i64> for U128

type Output = U128

The resulting type after applying the >> operator.

impl<'a> Shr<&'a i8> for U128

type Output = U128

The resulting type after applying the >> operator.

impl<'a, 'b> Shr<&'a i8> for &'b U128

type Output = U128

The resulting type after applying the >> operator.

impl<'a, 'b> Shr<&'a isize> for &'b U128

type Output = U128

The resulting type after applying the >> operator.

impl<'a> Shr<&'a isize> for U128

type Output = U128

The resulting type after applying the >> operator.

impl<'a, 'b> Shr<&'a u128> for &'b U128

type Output = U128

The resulting type after applying the >> operator.

impl<'a> Shr<&'a u128> for U128

type Output = U128

The resulting type after applying the >> operator.

impl<'a> Shr<&'a u16> for U128

type Output = U128

The resulting type after applying the >> operator.

impl<'a, 'b> Shr<&'a u16> for &'b U128

type Output = U128

The resulting type after applying the >> operator.

impl<'a> Shr<&'a u32> for U128

type Output = U128

The resulting type after applying the >> operator.

impl<'a, 'b> Shr<&'a u32> for &'b U128

type Output = U128

The resulting type after applying the >> operator.

impl<'a, 'b> Shr<&'a u64> for &'b U128

type Output = U128

The resulting type after applying the >> operator.

impl<'a> Shr<&'a u64> for U128

type Output = U128

The resulting type after applying the >> operator.

impl<'a> Shr<&'a u8> for U128

type Output = U128

The resulting type after applying the >> operator.

impl<'a, 'b> Shr<&'a u8> for &'b U128

type Output = U128

The resulting type after applying the >> operator.

impl<'a> Shr<&'a usize> for U128

type Output = U128

The resulting type after applying the >> operator.

impl<'a, 'b> Shr<&'a usize> for &'b U128

type Output = U128

The resulting type after applying the >> operator.

impl Shr<i128> for U128

type Output = U128

The resulting type after applying the >> operator.

impl<'a> Shr<i128> for &'a U128

type Output = U128

The resulting type after applying the >> operator.

impl Shr<i16> for U128

type Output = U128

The resulting type after applying the >> operator.

impl<'a> Shr<i16> for &'a U128

type Output = U128

The resulting type after applying the >> operator.

impl Shr<i32> for U128

type Output = U128

The resulting type after applying the >> operator.

impl<'a> Shr<i32> for &'a U128

type Output = U128

The resulting type after applying the >> operator.

impl<'a> Shr<i64> for &'a U128

type Output = U128

The resulting type after applying the >> operator.

impl Shr<i64> for U128

type Output = U128

The resulting type after applying the >> operator.

impl Shr<i8> for U128

type Output = U128

The resulting type after applying the >> operator.

impl<'a> Shr<i8> for &'a U128

type Output = U128

The resulting type after applying the >> operator.

impl Shr<isize> for U128

type Output = U128

The resulting type after applying the >> operator.

impl<'a> Shr<isize> for &'a U128

type Output = U128

The resulting type after applying the >> operator.

impl<'a> Shr<u128> for &'a U128

type Output = U128

The resulting type after applying the >> operator.

impl Shr<u128> for U128

type Output = U128

The resulting type after applying the >> operator.

impl Shr<u16> for U128

type Output = U128

The resulting type after applying the >> operator.

impl<'a> Shr<u16> for &'a U128

type Output = U128

The resulting type after applying the >> operator.

impl<'a> Shr<u32> for &'a U128

type Output = U128

The resulting type after applying the >> operator.

impl Shr<u32> for U128

type Output = U128

The resulting type after applying the >> operator.

impl Shr<u64> for U128

type Output = U128

The resulting type after applying the >> operator.

impl<'a> Shr<u64> for &'a U128

type Output = U128

The resulting type after applying the >> operator.

impl<'a> Shr<u8> for &'a U128

type Output = U128

The resulting type after applying the >> operator.

impl Shr<u8> for U128

type Output = U128

The resulting type after applying the >> operator.

impl Shr<usize> for U128

type Output = U128

The resulting type after applying the >> operator.

impl<'a> Shr<usize> for &'a U128

type Output = U128

The resulting type after applying the >> operator.

impl<'a> ShrAssign<&'a i128> for U128

impl<'a> ShrAssign<&'a i16> for U128

impl<'a> ShrAssign<&'a i32> for U128

impl<'a> ShrAssign<&'a i64> for U128

impl<'a> ShrAssign<&'a i8> for U128

impl<'a> ShrAssign<&'a isize> for U128

impl<'a> ShrAssign<&'a u128> for U128

impl<'a> ShrAssign<&'a u16> for U128

impl<'a> ShrAssign<&'a u32> for U128

impl<'a> ShrAssign<&'a u64> for U128

impl<'a> ShrAssign<&'a u8> for U128

impl<'a> ShrAssign<&'a usize> for U128

impl ShrAssign<i128> for U128

impl ShrAssign<i16> for U128

impl ShrAssign<i32> for U128

impl ShrAssign<i64> for U128

impl ShrAssign<i8> for U128

impl ShrAssign<isize> for U128

impl ShrAssign<u128> for U128

impl ShrAssign<u16> for U128

impl ShrAssign<u32> for U128

impl ShrAssign<u64> for U128

impl ShrAssign<u8> for U128

impl ShrAssign<usize> for U128

impl<'a> Sub<&'a U128> for U128

type Output = U128

The resulting type after applying the - operator.

impl<'a, 'b> Sub<&'b U128> for &'a U128

type Output = U128

The resulting type after applying the - operator.

impl<Rhs> Sub<Rhs> for U128 where
    Rhs: Into<U128>, 

type Output = U128

The resulting type after applying the - operator.

impl<'a, Rhs> Sub<Rhs> for &'a U128 where
    Rhs: Into<U128>, 

type Output = U128

The resulting type after applying the - operator.

impl<'a> SubAssign<&'a U128> for U128

impl<Rhs> SubAssign<Rhs> for U128 where
    Rhs: Into<U128>, 

impl<'a> Sum<&'a U128> for U128

impl Sum<U128> for U128

impl UintConvert<U1024> for U128

impl UintConvert<U128> for U256

impl UintConvert<U160> for U128

impl UintConvert<U2048> for U128

impl UintConvert<U224> for U128

impl UintConvert<U256> for U128

impl UintConvert<U384> for U128

impl UintConvert<U4096> for U128

impl UintConvert<U512> for U128

impl UintConvert<U520> for U128

impl UpperHex for U128

Auto Trait Implementations

impl RefUnwindSafe for U128

impl Send for U128

impl Sync for U128

impl Unpin for U128

impl UnwindSafe for U128

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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