Struct Uint

Source
pub struct Uint(pub u128);
Expand description

Uint implements zig-zag encoding to represent integers as binary sequences

Tuple Fields§

§0: u128

Implementations§

Source§

impl Uint

Source

pub const MAX_BYTES: usize = 19usize

The maximum number of bytes a uint will consume

Source

pub fn peek(value: &[u8]) -> Option<usize>

Peek returns the number of bytes that would be read or None if no Uint cannot be read

use uint_zigzag::Uint;

let buffer = [0x34u8];

let out = Uint::peek(&buffer);

assert!(out.is_some());

let out = Uint::peek(&[]);

assert!(out.is_none());
Source

pub fn to_bytes<M: AsMut<[u8]>>(&self, buffer: M)

Zig-zag encoding, any length from 1 to MAX_BYTES into buffer buffer must be big enough to hold the result

 use uint_zigzag::Uint;

let mut buffer = [0u8, 0u8];
let mut u = Uint::from(127);
u.to_bytes(&mut buffer);

assert_eq!(buffer, [0x7Fu8, 0u8]);

u = Uint::from(128);
u.to_bytes(&mut buffer);
assert_eq!(buffer, [0x80u8, 1u8]);
Source

pub fn to_bytes_with_length(self, buffer: &mut [u8]) -> usize

Same as to_bytes except it returns how many bytes were actually used

Source

pub fn to_vec(&self) -> Vec<u8>

Available on crate features alloc or std only.

Zig-zag encoding, any length from 1 to MAX_BYTES

use uint_zigzag::Uint;

let u = Uint(345678);
let out = u.to_vec();

assert_eq!(out.as_slice(), &[206, 140, 21]);

let u = Uint(2048);
let out = u.to_vec();
assert_eq!(out.as_slice(), &[128, 16]);
Source

pub fn to_writer<W: Write>(&self, writer: &mut W) -> Result<usize, Error>

Write bytes to a stream

Source

pub fn from_reader<R: Read>(reader: &mut R) -> Result<Self, Error>

Read bytes from a stream

Trait Implementations§

Source§

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

Source§

type Output = Uint

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &'b Uint) -> Self::Output

Performs the + operation. Read more
Source§

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

Source§

type Output = Uint

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &'a Uint) -> Self::Output

Performs the + operation. Read more
Source§

impl<'a> Add<&'a Uint> for i128

Source§

type Output = i128

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &'a Uint) -> Self::Output

Performs the + operation. Read more
Source§

impl<'a> Add<&'a Uint> for i16

Source§

type Output = i16

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &'a Uint) -> Self::Output

Performs the + operation. Read more
Source§

impl<'a> Add<&'a Uint> for i32

Source§

type Output = i32

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &'a Uint) -> Self::Output

Performs the + operation. Read more
Source§

impl<'a> Add<&'a Uint> for i64

Source§

type Output = i64

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &'a Uint) -> Self::Output

Performs the + operation. Read more
Source§

impl<'a> Add<&'a Uint> for i8

Source§

type Output = i8

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &'a Uint) -> Self::Output

Performs the + operation. Read more
Source§

impl<'a> Add<&'a Uint> for isize

Source§

type Output = isize

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &'a Uint) -> Self::Output

Performs the + operation. Read more
Source§

impl<'a> Add<&'a Uint> for u128

Source§

type Output = u128

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &'a Uint) -> Self::Output

Performs the + operation. Read more
Source§

impl<'a> Add<&'a Uint> for u16

Source§

type Output = u16

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &'a Uint) -> Self::Output

Performs the + operation. Read more
Source§

impl<'a> Add<&'a Uint> for u32

Source§

type Output = u32

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &'a Uint) -> Self::Output

Performs the + operation. Read more
Source§

impl<'a> Add<&'a Uint> for u64

Source§

type Output = u64

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &'a Uint) -> Self::Output

Performs the + operation. Read more
Source§

impl<'a> Add<&'a Uint> for u8

Source§

type Output = u8

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &'a Uint) -> Self::Output

Performs the + operation. Read more
Source§

impl<'a> Add<&'a Uint> for usize

Source§

type Output = usize

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &'a Uint) -> Self::Output

Performs the + operation. Read more
Source§

impl<'b> Add<Uint> for &'b Uint

Source§

type Output = Uint

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Uint) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<Uint> for i128

Source§

type Output = i128

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Uint) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<Uint> for i16

Source§

type Output = i16

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Uint) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<Uint> for i32

Source§

type Output = i32

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Uint) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<Uint> for i64

Source§

type Output = i64

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Uint) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<Uint> for i8

Source§

type Output = i8

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Uint) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<Uint> for isize

Source§

type Output = isize

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Uint) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<Uint> for u128

Source§

type Output = u128

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Uint) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<Uint> for u16

Source§

type Output = u16

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Uint) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<Uint> for u32

Source§

type Output = u32

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Uint) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<Uint> for u64

Source§

type Output = u64

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Uint) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<Uint> for u8

Source§

type Output = u8

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Uint) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<Uint> for usize

Source§

type Output = usize

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Uint) -> Self::Output

Performs the + operation. Read more
Source§

impl<'a> Add<i128> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the + operator.
Source§

fn add(self, rhs: i128) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<i128> for Uint

Source§

type Output = Uint

The resulting type after applying the + operator.
Source§

fn add(self, rhs: i128) -> Self::Output

Performs the + operation. Read more
Source§

impl<'a> Add<i16> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the + operator.
Source§

fn add(self, rhs: i16) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<i16> for Uint

Source§

type Output = Uint

The resulting type after applying the + operator.
Source§

fn add(self, rhs: i16) -> Self::Output

Performs the + operation. Read more
Source§

impl<'a> Add<i32> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the + operator.
Source§

fn add(self, rhs: i32) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<i32> for Uint

Source§

type Output = Uint

The resulting type after applying the + operator.
Source§

fn add(self, rhs: i32) -> Self::Output

Performs the + operation. Read more
Source§

impl<'a> Add<i64> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the + operator.
Source§

fn add(self, rhs: i64) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<i64> for Uint

Source§

type Output = Uint

The resulting type after applying the + operator.
Source§

fn add(self, rhs: i64) -> Self::Output

Performs the + operation. Read more
Source§

impl<'a> Add<i8> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the + operator.
Source§

fn add(self, rhs: i8) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<i8> for Uint

Source§

type Output = Uint

The resulting type after applying the + operator.
Source§

fn add(self, rhs: i8) -> Self::Output

Performs the + operation. Read more
Source§

impl<'a> Add<isize> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the + operator.
Source§

fn add(self, rhs: isize) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<isize> for Uint

Source§

type Output = Uint

The resulting type after applying the + operator.
Source§

fn add(self, rhs: isize) -> Self::Output

Performs the + operation. Read more
Source§

impl<'a> Add<u128> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the + operator.
Source§

fn add(self, rhs: u128) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<u128> for Uint

Source§

type Output = Uint

The resulting type after applying the + operator.
Source§

fn add(self, rhs: u128) -> Self::Output

Performs the + operation. Read more
Source§

impl<'a> Add<u16> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the + operator.
Source§

fn add(self, rhs: u16) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<u16> for Uint

Source§

type Output = Uint

The resulting type after applying the + operator.
Source§

fn add(self, rhs: u16) -> Self::Output

Performs the + operation. Read more
Source§

impl<'a> Add<u32> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the + operator.
Source§

fn add(self, rhs: u32) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<u32> for Uint

Source§

type Output = Uint

The resulting type after applying the + operator.
Source§

fn add(self, rhs: u32) -> Self::Output

Performs the + operation. Read more
Source§

impl<'a> Add<u64> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the + operator.
Source§

fn add(self, rhs: u64) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<u64> for Uint

Source§

type Output = Uint

The resulting type after applying the + operator.
Source§

fn add(self, rhs: u64) -> Self::Output

Performs the + operation. Read more
Source§

impl<'a> Add<u8> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the + operator.
Source§

fn add(self, rhs: u8) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<u8> for Uint

Source§

type Output = Uint

The resulting type after applying the + operator.
Source§

fn add(self, rhs: u8) -> Self::Output

Performs the + operation. Read more
Source§

impl<'a> Add<usize> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the + operator.
Source§

fn add(self, rhs: usize) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<usize> for Uint

Source§

type Output = Uint

The resulting type after applying the + operator.
Source§

fn add(self, rhs: usize) -> Self::Output

Performs the + operation. Read more
Source§

impl Add for Uint

Source§

type Output = Uint

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Uint) -> Self::Output

Performs the + operation. Read more
Source§

impl AddAssign<i128> for Uint

Source§

fn add_assign(&mut self, rhs: i128)

Performs the += operation. Read more
Source§

impl AddAssign<i16> for Uint

Source§

fn add_assign(&mut self, rhs: i16)

Performs the += operation. Read more
Source§

impl AddAssign<i32> for Uint

Source§

fn add_assign(&mut self, rhs: i32)

Performs the += operation. Read more
Source§

impl AddAssign<i64> for Uint

Source§

fn add_assign(&mut self, rhs: i64)

Performs the += operation. Read more
Source§

impl AddAssign<i8> for Uint

Source§

fn add_assign(&mut self, rhs: i8)

Performs the += operation. Read more
Source§

impl AddAssign<isize> for Uint

Source§

fn add_assign(&mut self, rhs: isize)

Performs the += operation. Read more
Source§

impl AddAssign<u128> for Uint

Source§

fn add_assign(&mut self, rhs: u128)

Performs the += operation. Read more
Source§

impl AddAssign<u16> for Uint

Source§

fn add_assign(&mut self, rhs: u16)

Performs the += operation. Read more
Source§

impl AddAssign<u32> for Uint

Source§

fn add_assign(&mut self, rhs: u32)

Performs the += operation. Read more
Source§

impl AddAssign<u64> for Uint

Source§

fn add_assign(&mut self, rhs: u64)

Performs the += operation. Read more
Source§

impl AddAssign<u8> for Uint

Source§

fn add_assign(&mut self, rhs: u8)

Performs the += operation. Read more
Source§

impl AddAssign<usize> for Uint

Source§

fn add_assign(&mut self, rhs: usize)

Performs the += operation. Read more
Source§

impl AddAssign for Uint

Source§

fn add_assign(&mut self, rhs: Uint)

Performs the += operation. Read more
Source§

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

Source§

type Output = Uint

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &'b Uint) -> Self::Output

Performs the & operation. Read more
Source§

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

Source§

type Output = Uint

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &'a Uint) -> Self::Output

Performs the & operation. Read more
Source§

impl<'a> BitAnd<&'a Uint> for i128

Source§

type Output = i128

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &'a Uint) -> Self::Output

Performs the & operation. Read more
Source§

impl<'a> BitAnd<&'a Uint> for i16

Source§

type Output = i16

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &'a Uint) -> Self::Output

Performs the & operation. Read more
Source§

impl<'a> BitAnd<&'a Uint> for i32

Source§

type Output = i32

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &'a Uint) -> Self::Output

Performs the & operation. Read more
Source§

impl<'a> BitAnd<&'a Uint> for i64

Source§

type Output = i64

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &'a Uint) -> Self::Output

Performs the & operation. Read more
Source§

impl<'a> BitAnd<&'a Uint> for i8

Source§

type Output = i8

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &'a Uint) -> Self::Output

Performs the & operation. Read more
Source§

impl<'a> BitAnd<&'a Uint> for isize

Source§

type Output = isize

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &'a Uint) -> Self::Output

Performs the & operation. Read more
Source§

impl<'a> BitAnd<&'a Uint> for u128

Source§

type Output = u128

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &'a Uint) -> Self::Output

Performs the & operation. Read more
Source§

impl<'a> BitAnd<&'a Uint> for u16

Source§

type Output = u16

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &'a Uint) -> Self::Output

Performs the & operation. Read more
Source§

impl<'a> BitAnd<&'a Uint> for u32

Source§

type Output = u32

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &'a Uint) -> Self::Output

Performs the & operation. Read more
Source§

impl<'a> BitAnd<&'a Uint> for u64

Source§

type Output = u64

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &'a Uint) -> Self::Output

Performs the & operation. Read more
Source§

impl<'a> BitAnd<&'a Uint> for u8

Source§

type Output = u8

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &'a Uint) -> Self::Output

Performs the & operation. Read more
Source§

impl<'a> BitAnd<&'a Uint> for usize

Source§

type Output = usize

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: &'a Uint) -> Self::Output

Performs the & operation. Read more
Source§

impl<'b> BitAnd<Uint> for &'b Uint

Source§

type Output = Uint

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: Uint) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<Uint> for i128

Source§

type Output = i128

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: Uint) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<Uint> for i16

Source§

type Output = i16

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: Uint) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<Uint> for i32

Source§

type Output = i32

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: Uint) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<Uint> for i64

Source§

type Output = i64

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: Uint) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<Uint> for i8

Source§

type Output = i8

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: Uint) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<Uint> for isize

Source§

type Output = isize

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: Uint) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<Uint> for u128

Source§

type Output = u128

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: Uint) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<Uint> for u16

Source§

type Output = u16

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: Uint) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<Uint> for u32

Source§

type Output = u32

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: Uint) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<Uint> for u64

Source§

type Output = u64

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: Uint) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<Uint> for u8

Source§

type Output = u8

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: Uint) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<Uint> for usize

Source§

type Output = usize

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: Uint) -> Self::Output

Performs the & operation. Read more
Source§

impl<'a> BitAnd<i128> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: i128) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<i128> for Uint

Source§

type Output = Uint

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: i128) -> Self::Output

Performs the & operation. Read more
Source§

impl<'a> BitAnd<i16> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: i16) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<i16> for Uint

Source§

type Output = Uint

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: i16) -> Self::Output

Performs the & operation. Read more
Source§

impl<'a> BitAnd<i32> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: i32) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<i32> for Uint

Source§

type Output = Uint

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: i32) -> Self::Output

Performs the & operation. Read more
Source§

impl<'a> BitAnd<i64> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: i64) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<i64> for Uint

Source§

type Output = Uint

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: i64) -> Self::Output

Performs the & operation. Read more
Source§

impl<'a> BitAnd<i8> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: i8) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<i8> for Uint

Source§

type Output = Uint

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: i8) -> Self::Output

Performs the & operation. Read more
Source§

impl<'a> BitAnd<isize> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: isize) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<isize> for Uint

Source§

type Output = Uint

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: isize) -> Self::Output

Performs the & operation. Read more
Source§

impl<'a> BitAnd<u128> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: u128) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<u128> for Uint

Source§

type Output = Uint

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: u128) -> Self::Output

Performs the & operation. Read more
Source§

impl<'a> BitAnd<u16> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: u16) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<u16> for Uint

Source§

type Output = Uint

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: u16) -> Self::Output

Performs the & operation. Read more
Source§

impl<'a> BitAnd<u32> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: u32) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<u32> for Uint

Source§

type Output = Uint

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: u32) -> Self::Output

Performs the & operation. Read more
Source§

impl<'a> BitAnd<u64> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: u64) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<u64> for Uint

Source§

type Output = Uint

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: u64) -> Self::Output

Performs the & operation. Read more
Source§

impl<'a> BitAnd<u8> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: u8) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<u8> for Uint

Source§

type Output = Uint

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: u8) -> Self::Output

Performs the & operation. Read more
Source§

impl<'a> BitAnd<usize> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: usize) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<usize> for Uint

Source§

type Output = Uint

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: usize) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd for Uint

Source§

type Output = Uint

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: Uint) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAndAssign<i128> for Uint

Source§

fn bitand_assign(&mut self, rhs: i128)

Performs the &= operation. Read more
Source§

impl BitAndAssign<i16> for Uint

Source§

fn bitand_assign(&mut self, rhs: i16)

Performs the &= operation. Read more
Source§

impl BitAndAssign<i32> for Uint

Source§

fn bitand_assign(&mut self, rhs: i32)

Performs the &= operation. Read more
Source§

impl BitAndAssign<i64> for Uint

Source§

fn bitand_assign(&mut self, rhs: i64)

Performs the &= operation. Read more
Source§

impl BitAndAssign<i8> for Uint

Source§

fn bitand_assign(&mut self, rhs: i8)

Performs the &= operation. Read more
Source§

impl BitAndAssign<isize> for Uint

Source§

fn bitand_assign(&mut self, rhs: isize)

Performs the &= operation. Read more
Source§

impl BitAndAssign<u128> for Uint

Source§

fn bitand_assign(&mut self, rhs: u128)

Performs the &= operation. Read more
Source§

impl BitAndAssign<u16> for Uint

Source§

fn bitand_assign(&mut self, rhs: u16)

Performs the &= operation. Read more
Source§

impl BitAndAssign<u32> for Uint

Source§

fn bitand_assign(&mut self, rhs: u32)

Performs the &= operation. Read more
Source§

impl BitAndAssign<u64> for Uint

Source§

fn bitand_assign(&mut self, rhs: u64)

Performs the &= operation. Read more
Source§

impl BitAndAssign<u8> for Uint

Source§

fn bitand_assign(&mut self, rhs: u8)

Performs the &= operation. Read more
Source§

impl BitAndAssign<usize> for Uint

Source§

fn bitand_assign(&mut self, rhs: usize)

Performs the &= operation. Read more
Source§

impl BitAndAssign for Uint

Source§

fn bitand_assign(&mut self, rhs: Uint)

Performs the &= operation. Read more
Source§

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

Source§

type Output = Uint

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &'b Uint) -> Self::Output

Performs the | operation. Read more
Source§

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

Source§

type Output = Uint

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &'a Uint) -> Self::Output

Performs the | operation. Read more
Source§

impl<'a> BitOr<&'a Uint> for i128

Source§

type Output = i128

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &'a Uint) -> Self::Output

Performs the | operation. Read more
Source§

impl<'a> BitOr<&'a Uint> for i16

Source§

type Output = i16

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &'a Uint) -> Self::Output

Performs the | operation. Read more
Source§

impl<'a> BitOr<&'a Uint> for i32

Source§

type Output = i32

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &'a Uint) -> Self::Output

Performs the | operation. Read more
Source§

impl<'a> BitOr<&'a Uint> for i64

Source§

type Output = i64

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &'a Uint) -> Self::Output

Performs the | operation. Read more
Source§

impl<'a> BitOr<&'a Uint> for i8

Source§

type Output = i8

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &'a Uint) -> Self::Output

Performs the | operation. Read more
Source§

impl<'a> BitOr<&'a Uint> for isize

Source§

type Output = isize

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &'a Uint) -> Self::Output

Performs the | operation. Read more
Source§

impl<'a> BitOr<&'a Uint> for u128

Source§

type Output = u128

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &'a Uint) -> Self::Output

Performs the | operation. Read more
Source§

impl<'a> BitOr<&'a Uint> for u16

Source§

type Output = u16

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &'a Uint) -> Self::Output

Performs the | operation. Read more
Source§

impl<'a> BitOr<&'a Uint> for u32

Source§

type Output = u32

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &'a Uint) -> Self::Output

Performs the | operation. Read more
Source§

impl<'a> BitOr<&'a Uint> for u64

Source§

type Output = u64

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &'a Uint) -> Self::Output

Performs the | operation. Read more
Source§

impl<'a> BitOr<&'a Uint> for u8

Source§

type Output = u8

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &'a Uint) -> Self::Output

Performs the | operation. Read more
Source§

impl<'a> BitOr<&'a Uint> for usize

Source§

type Output = usize

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: &'a Uint) -> Self::Output

Performs the | operation. Read more
Source§

impl<'b> BitOr<Uint> for &'b Uint

Source§

type Output = Uint

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: Uint) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<Uint> for i128

Source§

type Output = i128

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: Uint) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<Uint> for i16

Source§

type Output = i16

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: Uint) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<Uint> for i32

Source§

type Output = i32

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: Uint) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<Uint> for i64

Source§

type Output = i64

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: Uint) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<Uint> for i8

Source§

type Output = i8

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: Uint) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<Uint> for isize

Source§

type Output = isize

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: Uint) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<Uint> for u128

Source§

type Output = u128

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: Uint) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<Uint> for u16

Source§

type Output = u16

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: Uint) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<Uint> for u32

Source§

type Output = u32

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: Uint) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<Uint> for u64

Source§

type Output = u64

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: Uint) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<Uint> for u8

Source§

type Output = u8

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: Uint) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<Uint> for usize

Source§

type Output = usize

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: Uint) -> Self::Output

Performs the | operation. Read more
Source§

impl<'a> BitOr<i128> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: i128) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<i128> for Uint

Source§

type Output = Uint

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: i128) -> Self::Output

Performs the | operation. Read more
Source§

impl<'a> BitOr<i16> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: i16) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<i16> for Uint

Source§

type Output = Uint

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: i16) -> Self::Output

Performs the | operation. Read more
Source§

impl<'a> BitOr<i32> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: i32) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<i32> for Uint

Source§

type Output = Uint

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: i32) -> Self::Output

Performs the | operation. Read more
Source§

impl<'a> BitOr<i64> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: i64) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<i64> for Uint

Source§

type Output = Uint

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: i64) -> Self::Output

Performs the | operation. Read more
Source§

impl<'a> BitOr<i8> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: i8) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<i8> for Uint

Source§

type Output = Uint

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: i8) -> Self::Output

Performs the | operation. Read more
Source§

impl<'a> BitOr<isize> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: isize) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<isize> for Uint

Source§

type Output = Uint

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: isize) -> Self::Output

Performs the | operation. Read more
Source§

impl<'a> BitOr<u128> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: u128) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<u128> for Uint

Source§

type Output = Uint

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: u128) -> Self::Output

Performs the | operation. Read more
Source§

impl<'a> BitOr<u16> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: u16) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<u16> for Uint

Source§

type Output = Uint

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: u16) -> Self::Output

Performs the | operation. Read more
Source§

impl<'a> BitOr<u32> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: u32) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<u32> for Uint

Source§

type Output = Uint

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: u32) -> Self::Output

Performs the | operation. Read more
Source§

impl<'a> BitOr<u64> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: u64) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<u64> for Uint

Source§

type Output = Uint

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: u64) -> Self::Output

Performs the | operation. Read more
Source§

impl<'a> BitOr<u8> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: u8) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<u8> for Uint

Source§

type Output = Uint

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: u8) -> Self::Output

Performs the | operation. Read more
Source§

impl<'a> BitOr<usize> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: usize) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<usize> for Uint

Source§

type Output = Uint

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: usize) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr for Uint

Source§

type Output = Uint

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: Uint) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOrAssign<i128> for Uint

Source§

fn bitor_assign(&mut self, rhs: i128)

Performs the |= operation. Read more
Source§

impl BitOrAssign<i16> for Uint

Source§

fn bitor_assign(&mut self, rhs: i16)

Performs the |= operation. Read more
Source§

impl BitOrAssign<i32> for Uint

Source§

fn bitor_assign(&mut self, rhs: i32)

Performs the |= operation. Read more
Source§

impl BitOrAssign<i64> for Uint

Source§

fn bitor_assign(&mut self, rhs: i64)

Performs the |= operation. Read more
Source§

impl BitOrAssign<i8> for Uint

Source§

fn bitor_assign(&mut self, rhs: i8)

Performs the |= operation. Read more
Source§

impl BitOrAssign<isize> for Uint

Source§

fn bitor_assign(&mut self, rhs: isize)

Performs the |= operation. Read more
Source§

impl BitOrAssign<u128> for Uint

Source§

fn bitor_assign(&mut self, rhs: u128)

Performs the |= operation. Read more
Source§

impl BitOrAssign<u16> for Uint

Source§

fn bitor_assign(&mut self, rhs: u16)

Performs the |= operation. Read more
Source§

impl BitOrAssign<u32> for Uint

Source§

fn bitor_assign(&mut self, rhs: u32)

Performs the |= operation. Read more
Source§

impl BitOrAssign<u64> for Uint

Source§

fn bitor_assign(&mut self, rhs: u64)

Performs the |= operation. Read more
Source§

impl BitOrAssign<u8> for Uint

Source§

fn bitor_assign(&mut self, rhs: u8)

Performs the |= operation. Read more
Source§

impl BitOrAssign<usize> for Uint

Source§

fn bitor_assign(&mut self, rhs: usize)

Performs the |= operation. Read more
Source§

impl BitOrAssign for Uint

Source§

fn bitor_assign(&mut self, rhs: Uint)

Performs the |= operation. Read more
Source§

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

Source§

type Output = Uint

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &'b Uint) -> Self::Output

Performs the ^ operation. Read more
Source§

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

Source§

type Output = Uint

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &'a Uint) -> Self::Output

Performs the ^ operation. Read more
Source§

impl<'a> BitXor<&'a Uint> for i128

Source§

type Output = i128

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &'a Uint) -> Self::Output

Performs the ^ operation. Read more
Source§

impl<'a> BitXor<&'a Uint> for i16

Source§

type Output = i16

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &'a Uint) -> Self::Output

Performs the ^ operation. Read more
Source§

impl<'a> BitXor<&'a Uint> for i32

Source§

type Output = i32

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &'a Uint) -> Self::Output

Performs the ^ operation. Read more
Source§

impl<'a> BitXor<&'a Uint> for i64

Source§

type Output = i64

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &'a Uint) -> Self::Output

Performs the ^ operation. Read more
Source§

impl<'a> BitXor<&'a Uint> for i8

Source§

type Output = i8

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &'a Uint) -> Self::Output

Performs the ^ operation. Read more
Source§

impl<'a> BitXor<&'a Uint> for isize

Source§

type Output = isize

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &'a Uint) -> Self::Output

Performs the ^ operation. Read more
Source§

impl<'a> BitXor<&'a Uint> for u128

Source§

type Output = u128

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &'a Uint) -> Self::Output

Performs the ^ operation. Read more
Source§

impl<'a> BitXor<&'a Uint> for u16

Source§

type Output = u16

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &'a Uint) -> Self::Output

Performs the ^ operation. Read more
Source§

impl<'a> BitXor<&'a Uint> for u32

Source§

type Output = u32

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &'a Uint) -> Self::Output

Performs the ^ operation. Read more
Source§

impl<'a> BitXor<&'a Uint> for u64

Source§

type Output = u64

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &'a Uint) -> Self::Output

Performs the ^ operation. Read more
Source§

impl<'a> BitXor<&'a Uint> for u8

Source§

type Output = u8

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &'a Uint) -> Self::Output

Performs the ^ operation. Read more
Source§

impl<'a> BitXor<&'a Uint> for usize

Source§

type Output = usize

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: &'a Uint) -> Self::Output

Performs the ^ operation. Read more
Source§

impl<'b> BitXor<Uint> for &'b Uint

Source§

type Output = Uint

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: Uint) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<Uint> for i128

Source§

type Output = i128

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: Uint) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<Uint> for i16

Source§

type Output = i16

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: Uint) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<Uint> for i32

Source§

type Output = i32

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: Uint) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<Uint> for i64

Source§

type Output = i64

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: Uint) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<Uint> for i8

Source§

type Output = i8

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: Uint) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<Uint> for isize

Source§

type Output = isize

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: Uint) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<Uint> for u128

Source§

type Output = u128

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: Uint) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<Uint> for u16

Source§

type Output = u16

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: Uint) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<Uint> for u32

Source§

type Output = u32

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: Uint) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<Uint> for u64

Source§

type Output = u64

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: Uint) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<Uint> for u8

Source§

type Output = u8

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: Uint) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<Uint> for usize

Source§

type Output = usize

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: Uint) -> Self::Output

Performs the ^ operation. Read more
Source§

impl<'a> BitXor<i128> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: i128) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<i128> for Uint

Source§

type Output = Uint

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: i128) -> Self::Output

Performs the ^ operation. Read more
Source§

impl<'a> BitXor<i16> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: i16) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<i16> for Uint

Source§

type Output = Uint

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: i16) -> Self::Output

Performs the ^ operation. Read more
Source§

impl<'a> BitXor<i32> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: i32) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<i32> for Uint

Source§

type Output = Uint

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: i32) -> Self::Output

Performs the ^ operation. Read more
Source§

impl<'a> BitXor<i64> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: i64) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<i64> for Uint

Source§

type Output = Uint

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: i64) -> Self::Output

Performs the ^ operation. Read more
Source§

impl<'a> BitXor<i8> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: i8) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<i8> for Uint

Source§

type Output = Uint

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: i8) -> Self::Output

Performs the ^ operation. Read more
Source§

impl<'a> BitXor<isize> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: isize) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<isize> for Uint

Source§

type Output = Uint

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: isize) -> Self::Output

Performs the ^ operation. Read more
Source§

impl<'a> BitXor<u128> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: u128) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<u128> for Uint

Source§

type Output = Uint

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: u128) -> Self::Output

Performs the ^ operation. Read more
Source§

impl<'a> BitXor<u16> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: u16) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<u16> for Uint

Source§

type Output = Uint

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: u16) -> Self::Output

Performs the ^ operation. Read more
Source§

impl<'a> BitXor<u32> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: u32) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<u32> for Uint

Source§

type Output = Uint

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: u32) -> Self::Output

Performs the ^ operation. Read more
Source§

impl<'a> BitXor<u64> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: u64) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<u64> for Uint

Source§

type Output = Uint

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: u64) -> Self::Output

Performs the ^ operation. Read more
Source§

impl<'a> BitXor<u8> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: u8) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<u8> for Uint

Source§

type Output = Uint

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: u8) -> Self::Output

Performs the ^ operation. Read more
Source§

impl<'a> BitXor<usize> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: usize) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<usize> for Uint

Source§

type Output = Uint

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: usize) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor for Uint

Source§

type Output = Uint

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: Uint) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXorAssign<i128> for Uint

Source§

fn bitxor_assign(&mut self, rhs: i128)

Performs the ^= operation. Read more
Source§

impl BitXorAssign<i16> for Uint

Source§

fn bitxor_assign(&mut self, rhs: i16)

Performs the ^= operation. Read more
Source§

impl BitXorAssign<i32> for Uint

Source§

fn bitxor_assign(&mut self, rhs: i32)

Performs the ^= operation. Read more
Source§

impl BitXorAssign<i64> for Uint

Source§

fn bitxor_assign(&mut self, rhs: i64)

Performs the ^= operation. Read more
Source§

impl BitXorAssign<i8> for Uint

Source§

fn bitxor_assign(&mut self, rhs: i8)

Performs the ^= operation. Read more
Source§

impl BitXorAssign<isize> for Uint

Source§

fn bitxor_assign(&mut self, rhs: isize)

Performs the ^= operation. Read more
Source§

impl BitXorAssign<u128> for Uint

Source§

fn bitxor_assign(&mut self, rhs: u128)

Performs the ^= operation. Read more
Source§

impl BitXorAssign<u16> for Uint

Source§

fn bitxor_assign(&mut self, rhs: u16)

Performs the ^= operation. Read more
Source§

impl BitXorAssign<u32> for Uint

Source§

fn bitxor_assign(&mut self, rhs: u32)

Performs the ^= operation. Read more
Source§

impl BitXorAssign<u64> for Uint

Source§

fn bitxor_assign(&mut self, rhs: u64)

Performs the ^= operation. Read more
Source§

impl BitXorAssign<u8> for Uint

Source§

fn bitxor_assign(&mut self, rhs: u8)

Performs the ^= operation. Read more
Source§

impl BitXorAssign<usize> for Uint

Source§

fn bitxor_assign(&mut self, rhs: usize)

Performs the ^= operation. Read more
Source§

impl BitXorAssign for Uint

Source§

fn bitxor_assign(&mut self, rhs: Uint)

Performs the ^= operation. Read more
Source§

impl Clone for Uint

Source§

fn clone(&self) -> Uint

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

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

Performs copy-assignment from source. Read more
Source§

impl Debug for Uint

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Default for Uint

Source§

fn default() -> Uint

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

impl<'de> Deserialize<'de> for Uint

Available on crate feature serde only.
Source§

fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Display for Uint

Source§

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

Formats the value using the given formatter. Read more
Source§

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

Source§

type Output = Uint

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &'b Uint) -> Self::Output

Performs the / operation. Read more
Source§

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

Source§

type Output = Uint

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &'a Uint) -> Self::Output

Performs the / operation. Read more
Source§

impl<'a> Div<&'a Uint> for i128

Source§

type Output = i128

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &'a Uint) -> Self::Output

Performs the / operation. Read more
Source§

impl<'a> Div<&'a Uint> for i16

Source§

type Output = i16

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &'a Uint) -> Self::Output

Performs the / operation. Read more
Source§

impl<'a> Div<&'a Uint> for i32

Source§

type Output = i32

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &'a Uint) -> Self::Output

Performs the / operation. Read more
Source§

impl<'a> Div<&'a Uint> for i64

Source§

type Output = i64

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &'a Uint) -> Self::Output

Performs the / operation. Read more
Source§

impl<'a> Div<&'a Uint> for i8

Source§

type Output = i8

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &'a Uint) -> Self::Output

Performs the / operation. Read more
Source§

impl<'a> Div<&'a Uint> for isize

Source§

type Output = isize

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &'a Uint) -> Self::Output

Performs the / operation. Read more
Source§

impl<'a> Div<&'a Uint> for u128

Source§

type Output = u128

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &'a Uint) -> Self::Output

Performs the / operation. Read more
Source§

impl<'a> Div<&'a Uint> for u16

Source§

type Output = u16

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &'a Uint) -> Self::Output

Performs the / operation. Read more
Source§

impl<'a> Div<&'a Uint> for u32

Source§

type Output = u32

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &'a Uint) -> Self::Output

Performs the / operation. Read more
Source§

impl<'a> Div<&'a Uint> for u64

Source§

type Output = u64

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &'a Uint) -> Self::Output

Performs the / operation. Read more
Source§

impl<'a> Div<&'a Uint> for u8

Source§

type Output = u8

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &'a Uint) -> Self::Output

Performs the / operation. Read more
Source§

impl<'a> Div<&'a Uint> for usize

Source§

type Output = usize

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &'a Uint) -> Self::Output

Performs the / operation. Read more
Source§

impl<'b> Div<Uint> for &'b Uint

Source§

type Output = Uint

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Uint) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<Uint> for i128

Source§

type Output = i128

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Uint) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<Uint> for i16

Source§

type Output = i16

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Uint) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<Uint> for i32

Source§

type Output = i32

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Uint) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<Uint> for i64

Source§

type Output = i64

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Uint) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<Uint> for i8

Source§

type Output = i8

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Uint) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<Uint> for isize

Source§

type Output = isize

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Uint) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<Uint> for u128

Source§

type Output = u128

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Uint) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<Uint> for u16

Source§

type Output = u16

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Uint) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<Uint> for u32

Source§

type Output = u32

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Uint) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<Uint> for u64

Source§

type Output = u64

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Uint) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<Uint> for u8

Source§

type Output = u8

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Uint) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<Uint> for usize

Source§

type Output = usize

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Uint) -> Self::Output

Performs the / operation. Read more
Source§

impl<'a> Div<i128> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the / operator.
Source§

fn div(self, rhs: i128) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<i128> for Uint

Source§

type Output = Uint

The resulting type after applying the / operator.
Source§

fn div(self, rhs: i128) -> Self::Output

Performs the / operation. Read more
Source§

impl<'a> Div<i16> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the / operator.
Source§

fn div(self, rhs: i16) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<i16> for Uint

Source§

type Output = Uint

The resulting type after applying the / operator.
Source§

fn div(self, rhs: i16) -> Self::Output

Performs the / operation. Read more
Source§

impl<'a> Div<i32> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the / operator.
Source§

fn div(self, rhs: i32) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<i32> for Uint

Source§

type Output = Uint

The resulting type after applying the / operator.
Source§

fn div(self, rhs: i32) -> Self::Output

Performs the / operation. Read more
Source§

impl<'a> Div<i64> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the / operator.
Source§

fn div(self, rhs: i64) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<i64> for Uint

Source§

type Output = Uint

The resulting type after applying the / operator.
Source§

fn div(self, rhs: i64) -> Self::Output

Performs the / operation. Read more
Source§

impl<'a> Div<i8> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the / operator.
Source§

fn div(self, rhs: i8) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<i8> for Uint

Source§

type Output = Uint

The resulting type after applying the / operator.
Source§

fn div(self, rhs: i8) -> Self::Output

Performs the / operation. Read more
Source§

impl<'a> Div<isize> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the / operator.
Source§

fn div(self, rhs: isize) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<isize> for Uint

Source§

type Output = Uint

The resulting type after applying the / operator.
Source§

fn div(self, rhs: isize) -> Self::Output

Performs the / operation. Read more
Source§

impl<'a> Div<u128> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the / operator.
Source§

fn div(self, rhs: u128) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<u128> for Uint

Source§

type Output = Uint

The resulting type after applying the / operator.
Source§

fn div(self, rhs: u128) -> Self::Output

Performs the / operation. Read more
Source§

impl<'a> Div<u16> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the / operator.
Source§

fn div(self, rhs: u16) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<u16> for Uint

Source§

type Output = Uint

The resulting type after applying the / operator.
Source§

fn div(self, rhs: u16) -> Self::Output

Performs the / operation. Read more
Source§

impl<'a> Div<u32> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the / operator.
Source§

fn div(self, rhs: u32) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<u32> for Uint

Source§

type Output = Uint

The resulting type after applying the / operator.
Source§

fn div(self, rhs: u32) -> Self::Output

Performs the / operation. Read more
Source§

impl<'a> Div<u64> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the / operator.
Source§

fn div(self, rhs: u64) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<u64> for Uint

Source§

type Output = Uint

The resulting type after applying the / operator.
Source§

fn div(self, rhs: u64) -> Self::Output

Performs the / operation. Read more
Source§

impl<'a> Div<u8> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the / operator.
Source§

fn div(self, rhs: u8) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<u8> for Uint

Source§

type Output = Uint

The resulting type after applying the / operator.
Source§

fn div(self, rhs: u8) -> Self::Output

Performs the / operation. Read more
Source§

impl<'a> Div<usize> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the / operator.
Source§

fn div(self, rhs: usize) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<usize> for Uint

Source§

type Output = Uint

The resulting type after applying the / operator.
Source§

fn div(self, rhs: usize) -> Self::Output

Performs the / operation. Read more
Source§

impl Div for Uint

Source§

type Output = Uint

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Uint) -> Self::Output

Performs the / operation. Read more
Source§

impl DivAssign<i128> for Uint

Source§

fn div_assign(&mut self, rhs: i128)

Performs the /= operation. Read more
Source§

impl DivAssign<i16> for Uint

Source§

fn div_assign(&mut self, rhs: i16)

Performs the /= operation. Read more
Source§

impl DivAssign<i32> for Uint

Source§

fn div_assign(&mut self, rhs: i32)

Performs the /= operation. Read more
Source§

impl DivAssign<i64> for Uint

Source§

fn div_assign(&mut self, rhs: i64)

Performs the /= operation. Read more
Source§

impl DivAssign<i8> for Uint

Source§

fn div_assign(&mut self, rhs: i8)

Performs the /= operation. Read more
Source§

impl DivAssign<isize> for Uint

Source§

fn div_assign(&mut self, rhs: isize)

Performs the /= operation. Read more
Source§

impl DivAssign<u128> for Uint

Source§

fn div_assign(&mut self, rhs: u128)

Performs the /= operation. Read more
Source§

impl DivAssign<u16> for Uint

Source§

fn div_assign(&mut self, rhs: u16)

Performs the /= operation. Read more
Source§

impl DivAssign<u32> for Uint

Source§

fn div_assign(&mut self, rhs: u32)

Performs the /= operation. Read more
Source§

impl DivAssign<u64> for Uint

Source§

fn div_assign(&mut self, rhs: u64)

Performs the /= operation. Read more
Source§

impl DivAssign<u8> for Uint

Source§

fn div_assign(&mut self, rhs: u8)

Performs the /= operation. Read more
Source§

impl DivAssign<usize> for Uint

Source§

fn div_assign(&mut self, rhs: usize)

Performs the /= operation. Read more
Source§

impl DivAssign for Uint

Source§

fn div_assign(&mut self, rhs: Uint)

Performs the /= operation. Read more
Source§

impl From<Uint> for i128

Source§

fn from(v: Uint) -> i128

Converts to this type from the input type.
Source§

impl From<Uint> for i16

Source§

fn from(v: Uint) -> i16

Converts to this type from the input type.
Source§

impl From<Uint> for i32

Source§

fn from(v: Uint) -> i32

Converts to this type from the input type.
Source§

impl From<Uint> for i64

Source§

fn from(v: Uint) -> i64

Converts to this type from the input type.
Source§

impl From<Uint> for i8

Source§

fn from(v: Uint) -> i8

Converts to this type from the input type.
Source§

impl From<Uint> for isize

Source§

fn from(v: Uint) -> isize

Converts to this type from the input type.
Source§

impl From<Uint> for u128

Source§

fn from(v: Uint) -> Self

Converts to this type from the input type.
Source§

impl From<Uint> for u16

Source§

fn from(v: Uint) -> u16

Converts to this type from the input type.
Source§

impl From<Uint> for u32

Source§

fn from(v: Uint) -> u32

Converts to this type from the input type.
Source§

impl From<Uint> for u64

Source§

fn from(v: Uint) -> u64

Converts to this type from the input type.
Source§

impl From<Uint> for u8

Source§

fn from(v: Uint) -> u8

Converts to this type from the input type.
Source§

impl From<Uint> for usize

Source§

fn from(v: Uint) -> usize

Converts to this type from the input type.
Source§

impl From<i128> for Uint

Source§

fn from(v: i128) -> Self

Converts to this type from the input type.
Source§

impl From<i16> for Uint

Source§

fn from(v: i16) -> Self

Converts to this type from the input type.
Source§

impl From<i32> for Uint

Source§

fn from(v: i32) -> Self

Converts to this type from the input type.
Source§

impl From<i64> for Uint

Source§

fn from(v: i64) -> Self

Converts to this type from the input type.
Source§

impl From<i8> for Uint

Source§

fn from(v: i8) -> Self

Converts to this type from the input type.
Source§

impl From<isize> for Uint

Source§

fn from(v: isize) -> Self

Converts to this type from the input type.
Source§

impl From<u128> for Uint

Source§

fn from(v: u128) -> Self

Converts to this type from the input type.
Source§

impl From<u16> for Uint

Source§

fn from(v: u16) -> Self

Converts to this type from the input type.
Source§

impl From<u32> for Uint

Source§

fn from(v: u32) -> Self

Converts to this type from the input type.
Source§

impl From<u64> for Uint

Source§

fn from(v: u64) -> Self

Converts to this type from the input type.
Source§

impl From<u8> for Uint

Source§

fn from(v: u8) -> Self

Converts to this type from the input type.
Source§

impl From<usize> for Uint

Source§

fn from(v: usize) -> Self

Converts to this type from the input type.
Source§

impl Hash for Uint

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

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

Source§

type Output = Uint

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &'b Uint) -> Self::Output

Performs the * operation. Read more
Source§

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

Source§

type Output = Uint

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &'a Uint) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<&'a Uint> for i128

Source§

type Output = i128

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &'a Uint) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<&'a Uint> for i16

Source§

type Output = i16

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &'a Uint) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<&'a Uint> for i32

Source§

type Output = i32

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &'a Uint) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<&'a Uint> for i64

Source§

type Output = i64

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &'a Uint) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<&'a Uint> for i8

Source§

type Output = i8

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &'a Uint) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<&'a Uint> for isize

Source§

type Output = isize

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &'a Uint) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<&'a Uint> for u128

Source§

type Output = u128

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &'a Uint) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<&'a Uint> for u16

Source§

type Output = u16

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &'a Uint) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<&'a Uint> for u32

Source§

type Output = u32

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &'a Uint) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<&'a Uint> for u64

Source§

type Output = u64

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &'a Uint) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<&'a Uint> for u8

Source§

type Output = u8

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &'a Uint) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<&'a Uint> for usize

Source§

type Output = usize

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &'a Uint) -> Self::Output

Performs the * operation. Read more
Source§

impl<'b> Mul<Uint> for &'b Uint

Source§

type Output = Uint

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Uint) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<Uint> for i128

Source§

type Output = i128

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Uint) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<Uint> for i16

Source§

type Output = i16

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Uint) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<Uint> for i32

Source§

type Output = i32

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Uint) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<Uint> for i64

Source§

type Output = i64

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Uint) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<Uint> for i8

Source§

type Output = i8

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Uint) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<Uint> for isize

Source§

type Output = isize

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Uint) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<Uint> for u128

Source§

type Output = u128

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Uint) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<Uint> for u16

Source§

type Output = u16

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Uint) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<Uint> for u32

Source§

type Output = u32

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Uint) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<Uint> for u64

Source§

type Output = u64

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Uint) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<Uint> for u8

Source§

type Output = u8

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Uint) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<Uint> for usize

Source§

type Output = usize

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Uint) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<i128> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: i128) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<i128> for Uint

Source§

type Output = Uint

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: i128) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<i16> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: i16) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<i16> for Uint

Source§

type Output = Uint

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: i16) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<i32> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: i32) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<i32> for Uint

Source§

type Output = Uint

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: i32) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<i64> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: i64) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<i64> for Uint

Source§

type Output = Uint

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: i64) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<i8> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: i8) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<i8> for Uint

Source§

type Output = Uint

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: i8) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<isize> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: isize) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<isize> for Uint

Source§

type Output = Uint

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: isize) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<u128> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: u128) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<u128> for Uint

Source§

type Output = Uint

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: u128) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<u16> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: u16) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<u16> for Uint

Source§

type Output = Uint

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: u16) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<u32> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: u32) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<u32> for Uint

Source§

type Output = Uint

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: u32) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<u64> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: u64) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<u64> for Uint

Source§

type Output = Uint

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: u64) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<u8> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: u8) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<u8> for Uint

Source§

type Output = Uint

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: u8) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<usize> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: usize) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<usize> for Uint

Source§

type Output = Uint

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: usize) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul for Uint

Source§

type Output = Uint

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Uint) -> Self::Output

Performs the * operation. Read more
Source§

impl MulAssign<i128> for Uint

Source§

fn mul_assign(&mut self, rhs: i128)

Performs the *= operation. Read more
Source§

impl MulAssign<i16> for Uint

Source§

fn mul_assign(&mut self, rhs: i16)

Performs the *= operation. Read more
Source§

impl MulAssign<i32> for Uint

Source§

fn mul_assign(&mut self, rhs: i32)

Performs the *= operation. Read more
Source§

impl MulAssign<i64> for Uint

Source§

fn mul_assign(&mut self, rhs: i64)

Performs the *= operation. Read more
Source§

impl MulAssign<i8> for Uint

Source§

fn mul_assign(&mut self, rhs: i8)

Performs the *= operation. Read more
Source§

impl MulAssign<isize> for Uint

Source§

fn mul_assign(&mut self, rhs: isize)

Performs the *= operation. Read more
Source§

impl MulAssign<u128> for Uint

Source§

fn mul_assign(&mut self, rhs: u128)

Performs the *= operation. Read more
Source§

impl MulAssign<u16> for Uint

Source§

fn mul_assign(&mut self, rhs: u16)

Performs the *= operation. Read more
Source§

impl MulAssign<u32> for Uint

Source§

fn mul_assign(&mut self, rhs: u32)

Performs the *= operation. Read more
Source§

impl MulAssign<u64> for Uint

Source§

fn mul_assign(&mut self, rhs: u64)

Performs the *= operation. Read more
Source§

impl MulAssign<u8> for Uint

Source§

fn mul_assign(&mut self, rhs: u8)

Performs the *= operation. Read more
Source§

impl MulAssign<usize> for Uint

Source§

fn mul_assign(&mut self, rhs: usize)

Performs the *= operation. Read more
Source§

impl MulAssign for Uint

Source§

fn mul_assign(&mut self, rhs: Uint)

Performs the *= operation. Read more
Source§

impl Ord for Uint

Source§

fn cmp(&self, other: &Uint) -> Ordering

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

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

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

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

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

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

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for Uint

Source§

fn eq(&self, other: &Uint) -> bool

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

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

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

impl PartialOrd for Uint

Source§

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

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

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

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

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

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

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

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

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

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

impl Product<i16> for Uint

Source§

fn product<I: Iterator<Item = i16>>(iter: I) -> Self

Takes an iterator and generates Self from the elements by multiplying the items.
Source§

impl Product<i32> for Uint

Source§

fn product<I: Iterator<Item = i32>>(iter: I) -> Self

Takes an iterator and generates Self from the elements by multiplying the items.
Source§

impl Product<i64> for Uint

Source§

fn product<I: Iterator<Item = i64>>(iter: I) -> Self

Takes an iterator and generates Self from the elements by multiplying the items.
Source§

impl Product<i8> for Uint

Source§

fn product<I: Iterator<Item = i8>>(iter: I) -> Self

Takes an iterator and generates Self from the elements by multiplying the items.
Source§

impl Product<isize> for Uint

Source§

fn product<I: Iterator<Item = isize>>(iter: I) -> Self

Takes an iterator and generates Self from the elements by multiplying the items.
Source§

impl Product<u128> for Uint

Source§

fn product<I: Iterator<Item = u128>>(iter: I) -> Self

Takes an iterator and generates Self from the elements by multiplying the items.
Source§

impl Product<u16> for Uint

Source§

fn product<I: Iterator<Item = u16>>(iter: I) -> Self

Takes an iterator and generates Self from the elements by multiplying the items.
Source§

impl Product<u32> for Uint

Source§

fn product<I: Iterator<Item = u32>>(iter: I) -> Self

Takes an iterator and generates Self from the elements by multiplying the items.
Source§

impl Product<u64> for Uint

Source§

fn product<I: Iterator<Item = u64>>(iter: I) -> Self

Takes an iterator and generates Self from the elements by multiplying the items.
Source§

impl Product<u8> for Uint

Source§

fn product<I: Iterator<Item = u8>>(iter: I) -> Self

Takes an iterator and generates Self from the elements by multiplying the items.
Source§

impl Product<usize> for Uint

Source§

fn product<I: Iterator<Item = usize>>(iter: I) -> Self

Takes an iterator and generates Self from the elements by multiplying the items.
Source§

impl Product for Uint

Source§

fn product<I: Iterator<Item = Self>>(iter: I) -> Self

Takes an iterator and generates Self from the elements by multiplying the items.
Source§

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

Source§

type Output = Uint

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &'b Uint) -> Self::Output

Performs the % operation. Read more
Source§

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

Source§

type Output = Uint

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &'a Uint) -> Self::Output

Performs the % operation. Read more
Source§

impl<'a> Rem<&'a Uint> for i128

Source§

type Output = i128

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &'a Uint) -> Self::Output

Performs the % operation. Read more
Source§

impl<'a> Rem<&'a Uint> for i16

Source§

type Output = i16

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &'a Uint) -> Self::Output

Performs the % operation. Read more
Source§

impl<'a> Rem<&'a Uint> for i32

Source§

type Output = i32

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &'a Uint) -> Self::Output

Performs the % operation. Read more
Source§

impl<'a> Rem<&'a Uint> for i64

Source§

type Output = i64

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &'a Uint) -> Self::Output

Performs the % operation. Read more
Source§

impl<'a> Rem<&'a Uint> for i8

Source§

type Output = i8

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &'a Uint) -> Self::Output

Performs the % operation. Read more
Source§

impl<'a> Rem<&'a Uint> for isize

Source§

type Output = isize

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &'a Uint) -> Self::Output

Performs the % operation. Read more
Source§

impl<'a> Rem<&'a Uint> for u128

Source§

type Output = u128

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &'a Uint) -> Self::Output

Performs the % operation. Read more
Source§

impl<'a> Rem<&'a Uint> for u16

Source§

type Output = u16

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &'a Uint) -> Self::Output

Performs the % operation. Read more
Source§

impl<'a> Rem<&'a Uint> for u32

Source§

type Output = u32

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &'a Uint) -> Self::Output

Performs the % operation. Read more
Source§

impl<'a> Rem<&'a Uint> for u64

Source§

type Output = u64

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &'a Uint) -> Self::Output

Performs the % operation. Read more
Source§

impl<'a> Rem<&'a Uint> for u8

Source§

type Output = u8

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &'a Uint) -> Self::Output

Performs the % operation. Read more
Source§

impl<'a> Rem<&'a Uint> for usize

Source§

type Output = usize

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &'a Uint) -> Self::Output

Performs the % operation. Read more
Source§

impl<'b> Rem<Uint> for &'b Uint

Source§

type Output = Uint

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: Uint) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<Uint> for i128

Source§

type Output = i128

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: Uint) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<Uint> for i16

Source§

type Output = i16

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: Uint) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<Uint> for i32

Source§

type Output = i32

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: Uint) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<Uint> for i64

Source§

type Output = i64

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: Uint) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<Uint> for i8

Source§

type Output = i8

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: Uint) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<Uint> for isize

Source§

type Output = isize

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: Uint) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<Uint> for u128

Source§

type Output = u128

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: Uint) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<Uint> for u16

Source§

type Output = u16

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: Uint) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<Uint> for u32

Source§

type Output = u32

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: Uint) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<Uint> for u64

Source§

type Output = u64

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: Uint) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<Uint> for u8

Source§

type Output = u8

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: Uint) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<Uint> for usize

Source§

type Output = usize

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: Uint) -> Self::Output

Performs the % operation. Read more
Source§

impl<'a> Rem<i128> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: i128) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<i128> for Uint

Source§

type Output = Uint

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: i128) -> Self::Output

Performs the % operation. Read more
Source§

impl<'a> Rem<i16> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: i16) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<i16> for Uint

Source§

type Output = Uint

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: i16) -> Self::Output

Performs the % operation. Read more
Source§

impl<'a> Rem<i32> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: i32) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<i32> for Uint

Source§

type Output = Uint

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: i32) -> Self::Output

Performs the % operation. Read more
Source§

impl<'a> Rem<i64> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: i64) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<i64> for Uint

Source§

type Output = Uint

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: i64) -> Self::Output

Performs the % operation. Read more
Source§

impl<'a> Rem<i8> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: i8) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<i8> for Uint

Source§

type Output = Uint

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: i8) -> Self::Output

Performs the % operation. Read more
Source§

impl<'a> Rem<isize> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: isize) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<isize> for Uint

Source§

type Output = Uint

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: isize) -> Self::Output

Performs the % operation. Read more
Source§

impl<'a> Rem<u128> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: u128) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<u128> for Uint

Source§

type Output = Uint

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: u128) -> Self::Output

Performs the % operation. Read more
Source§

impl<'a> Rem<u16> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: u16) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<u16> for Uint

Source§

type Output = Uint

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: u16) -> Self::Output

Performs the % operation. Read more
Source§

impl<'a> Rem<u32> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: u32) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<u32> for Uint

Source§

type Output = Uint

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: u32) -> Self::Output

Performs the % operation. Read more
Source§

impl<'a> Rem<u64> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: u64) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<u64> for Uint

Source§

type Output = Uint

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: u64) -> Self::Output

Performs the % operation. Read more
Source§

impl<'a> Rem<u8> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: u8) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<u8> for Uint

Source§

type Output = Uint

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: u8) -> Self::Output

Performs the % operation. Read more
Source§

impl<'a> Rem<usize> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: usize) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<usize> for Uint

Source§

type Output = Uint

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: usize) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem for Uint

Source§

type Output = Uint

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: Uint) -> Self::Output

Performs the % operation. Read more
Source§

impl RemAssign<i128> for Uint

Source§

fn rem_assign(&mut self, rhs: i128)

Performs the %= operation. Read more
Source§

impl RemAssign<i16> for Uint

Source§

fn rem_assign(&mut self, rhs: i16)

Performs the %= operation. Read more
Source§

impl RemAssign<i32> for Uint

Source§

fn rem_assign(&mut self, rhs: i32)

Performs the %= operation. Read more
Source§

impl RemAssign<i64> for Uint

Source§

fn rem_assign(&mut self, rhs: i64)

Performs the %= operation. Read more
Source§

impl RemAssign<i8> for Uint

Source§

fn rem_assign(&mut self, rhs: i8)

Performs the %= operation. Read more
Source§

impl RemAssign<isize> for Uint

Source§

fn rem_assign(&mut self, rhs: isize)

Performs the %= operation. Read more
Source§

impl RemAssign<u128> for Uint

Source§

fn rem_assign(&mut self, rhs: u128)

Performs the %= operation. Read more
Source§

impl RemAssign<u16> for Uint

Source§

fn rem_assign(&mut self, rhs: u16)

Performs the %= operation. Read more
Source§

impl RemAssign<u32> for Uint

Source§

fn rem_assign(&mut self, rhs: u32)

Performs the %= operation. Read more
Source§

impl RemAssign<u64> for Uint

Source§

fn rem_assign(&mut self, rhs: u64)

Performs the %= operation. Read more
Source§

impl RemAssign<u8> for Uint

Source§

fn rem_assign(&mut self, rhs: u8)

Performs the %= operation. Read more
Source§

impl RemAssign<usize> for Uint

Source§

fn rem_assign(&mut self, rhs: usize)

Performs the %= operation. Read more
Source§

impl RemAssign for Uint

Source§

fn rem_assign(&mut self, rhs: Uint)

Performs the %= operation. Read more
Source§

impl Serialize for Uint

Available on crate feature serde only.
Source§

fn serialize<S: Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error>

Serialize this value into the given Serde serializer. Read more
Source§

impl<'a, 'b> Shl<&'b Uint> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: &'b Uint) -> Self::Output

Performs the << operation. Read more
Source§

impl<'a> Shl<&'a Uint> for Uint

Source§

type Output = Uint

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: &'a Uint) -> Self::Output

Performs the << operation. Read more
Source§

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

Source§

type Output = i128

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: &'a Uint) -> Self::Output

Performs the << operation. Read more
Source§

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

Source§

type Output = i16

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: &'a Uint) -> Self::Output

Performs the << operation. Read more
Source§

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

Source§

type Output = i32

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: &'a Uint) -> Self::Output

Performs the << operation. Read more
Source§

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

Source§

type Output = i64

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: &'a Uint) -> Self::Output

Performs the << operation. Read more
Source§

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

Source§

type Output = i8

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: &'a Uint) -> Self::Output

Performs the << operation. Read more
Source§

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

Source§

type Output = isize

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: &'a Uint) -> Self::Output

Performs the << operation. Read more
Source§

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

Source§

type Output = u128

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: &'a Uint) -> Self::Output

Performs the << operation. Read more
Source§

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

Source§

type Output = u16

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: &'a Uint) -> Self::Output

Performs the << operation. Read more
Source§

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

Source§

type Output = u32

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: &'a Uint) -> Self::Output

Performs the << operation. Read more
Source§

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

Source§

type Output = u64

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: &'a Uint) -> Self::Output

Performs the << operation. Read more
Source§

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

Source§

type Output = u8

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: &'a Uint) -> Self::Output

Performs the << operation. Read more
Source§

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

Source§

type Output = usize

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: &'a Uint) -> Self::Output

Performs the << operation. Read more
Source§

impl<'b> Shl<Uint> for &'b Uint

Source§

type Output = Uint

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: Uint) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<Uint> for i128

Source§

type Output = i128

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: Uint) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<Uint> for i16

Source§

type Output = i16

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: Uint) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<Uint> for i32

Source§

type Output = i32

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: Uint) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<Uint> for i64

Source§

type Output = i64

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: Uint) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<Uint> for i8

Source§

type Output = i8

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: Uint) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<Uint> for isize

Source§

type Output = isize

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: Uint) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<Uint> for u128

Source§

type Output = u128

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: Uint) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<Uint> for u16

Source§

type Output = u16

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: Uint) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<Uint> for u32

Source§

type Output = u32

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: Uint) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<Uint> for u64

Source§

type Output = u64

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: Uint) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<Uint> for u8

Source§

type Output = u8

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: Uint) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<Uint> for usize

Source§

type Output = usize

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: Uint) -> Self::Output

Performs the << operation. Read more
Source§

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

Source§

type Output = Uint

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: i128) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<i128> for Uint

Source§

type Output = Uint

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: i128) -> Self::Output

Performs the << operation. Read more
Source§

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

Source§

type Output = Uint

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: i16) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<i16> for Uint

Source§

type Output = Uint

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: i16) -> Self::Output

Performs the << operation. Read more
Source§

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

Source§

type Output = Uint

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: i32) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<i32> for Uint

Source§

type Output = Uint

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: i32) -> Self::Output

Performs the << operation. Read more
Source§

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

Source§

type Output = Uint

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: i64) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<i64> for Uint

Source§

type Output = Uint

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: i64) -> Self::Output

Performs the << operation. Read more
Source§

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

Source§

type Output = Uint

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: i8) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<i8> for Uint

Source§

type Output = Uint

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: i8) -> Self::Output

Performs the << operation. Read more
Source§

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

Source§

type Output = Uint

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: isize) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<isize> for Uint

Source§

type Output = Uint

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: isize) -> Self::Output

Performs the << operation. Read more
Source§

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

Source§

type Output = Uint

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: u128) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<u128> for Uint

Source§

type Output = Uint

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: u128) -> Self::Output

Performs the << operation. Read more
Source§

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

Source§

type Output = Uint

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: u16) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<u16> for Uint

Source§

type Output = Uint

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: u16) -> Self::Output

Performs the << operation. Read more
Source§

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

Source§

type Output = Uint

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: u32) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<u32> for Uint

Source§

type Output = Uint

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: u32) -> Self::Output

Performs the << operation. Read more
Source§

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

Source§

type Output = Uint

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: u64) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<u64> for Uint

Source§

type Output = Uint

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: u64) -> Self::Output

Performs the << operation. Read more
Source§

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

Source§

type Output = Uint

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: u8) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<u8> for Uint

Source§

type Output = Uint

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: u8) -> Self::Output

Performs the << operation. Read more
Source§

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

Source§

type Output = Uint

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: usize) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<usize> for Uint

Source§

type Output = Uint

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: usize) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl for Uint

Source§

type Output = Uint

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: Uint) -> Self::Output

Performs the << operation. Read more
Source§

impl ShlAssign<i128> for Uint

Source§

fn shl_assign(&mut self, rhs: i128)

Performs the <<= operation. Read more
Source§

impl ShlAssign<i16> for Uint

Source§

fn shl_assign(&mut self, rhs: i16)

Performs the <<= operation. Read more
Source§

impl ShlAssign<i32> for Uint

Source§

fn shl_assign(&mut self, rhs: i32)

Performs the <<= operation. Read more
Source§

impl ShlAssign<i64> for Uint

Source§

fn shl_assign(&mut self, rhs: i64)

Performs the <<= operation. Read more
Source§

impl ShlAssign<i8> for Uint

Source§

fn shl_assign(&mut self, rhs: i8)

Performs the <<= operation. Read more
Source§

impl ShlAssign<isize> for Uint

Source§

fn shl_assign(&mut self, rhs: isize)

Performs the <<= operation. Read more
Source§

impl ShlAssign<u128> for Uint

Source§

fn shl_assign(&mut self, rhs: u128)

Performs the <<= operation. Read more
Source§

impl ShlAssign<u16> for Uint

Source§

fn shl_assign(&mut self, rhs: u16)

Performs the <<= operation. Read more
Source§

impl ShlAssign<u32> for Uint

Source§

fn shl_assign(&mut self, rhs: u32)

Performs the <<= operation. Read more
Source§

impl ShlAssign<u64> for Uint

Source§

fn shl_assign(&mut self, rhs: u64)

Performs the <<= operation. Read more
Source§

impl ShlAssign<u8> for Uint

Source§

fn shl_assign(&mut self, rhs: u8)

Performs the <<= operation. Read more
Source§

impl ShlAssign<usize> for Uint

Source§

fn shl_assign(&mut self, rhs: usize)

Performs the <<= operation. Read more
Source§

impl ShlAssign for Uint

Source§

fn shl_assign(&mut self, rhs: Uint)

Performs the <<= operation. Read more
Source§

impl<'a, 'b> Shr<&'b Uint> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: &'b Uint) -> Self::Output

Performs the >> operation. Read more
Source§

impl<'a> Shr<&'a Uint> for Uint

Source§

type Output = Uint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: &'a Uint) -> Self::Output

Performs the >> operation. Read more
Source§

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

Source§

type Output = i128

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: &'a Uint) -> Self::Output

Performs the >> operation. Read more
Source§

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

Source§

type Output = i16

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: &'a Uint) -> Self::Output

Performs the >> operation. Read more
Source§

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

Source§

type Output = i32

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: &'a Uint) -> Self::Output

Performs the >> operation. Read more
Source§

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

Source§

type Output = i64

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: &'a Uint) -> Self::Output

Performs the >> operation. Read more
Source§

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

Source§

type Output = i8

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: &'a Uint) -> Self::Output

Performs the >> operation. Read more
Source§

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

Source§

type Output = isize

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: &'a Uint) -> Self::Output

Performs the >> operation. Read more
Source§

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

Source§

type Output = u128

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: &'a Uint) -> Self::Output

Performs the >> operation. Read more
Source§

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

Source§

type Output = u16

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: &'a Uint) -> Self::Output

Performs the >> operation. Read more
Source§

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

Source§

type Output = u32

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: &'a Uint) -> Self::Output

Performs the >> operation. Read more
Source§

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

Source§

type Output = u64

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: &'a Uint) -> Self::Output

Performs the >> operation. Read more
Source§

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

Source§

type Output = u8

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: &'a Uint) -> Self::Output

Performs the >> operation. Read more
Source§

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

Source§

type Output = usize

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: &'a Uint) -> Self::Output

Performs the >> operation. Read more
Source§

impl<'b> Shr<Uint> for &'b Uint

Source§

type Output = Uint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: Uint) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<Uint> for i128

Source§

type Output = i128

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: Uint) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<Uint> for i16

Source§

type Output = i16

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: Uint) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<Uint> for i32

Source§

type Output = i32

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: Uint) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<Uint> for i64

Source§

type Output = i64

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: Uint) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<Uint> for i8

Source§

type Output = i8

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: Uint) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<Uint> for isize

Source§

type Output = isize

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: Uint) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<Uint> for u128

Source§

type Output = u128

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: Uint) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<Uint> for u16

Source§

type Output = u16

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: Uint) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<Uint> for u32

Source§

type Output = u32

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: Uint) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<Uint> for u64

Source§

type Output = u64

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: Uint) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<Uint> for u8

Source§

type Output = u8

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: Uint) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<Uint> for usize

Source§

type Output = usize

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: Uint) -> Self::Output

Performs the >> operation. Read more
Source§

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

Source§

type Output = Uint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: i128) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<i128> for Uint

Source§

type Output = Uint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: i128) -> Self::Output

Performs the >> operation. Read more
Source§

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

Source§

type Output = Uint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: i16) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<i16> for Uint

Source§

type Output = Uint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: i16) -> Self::Output

Performs the >> operation. Read more
Source§

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

Source§

type Output = Uint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: i32) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<i32> for Uint

Source§

type Output = Uint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: i32) -> Self::Output

Performs the >> operation. Read more
Source§

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

Source§

type Output = Uint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: i64) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<i64> for Uint

Source§

type Output = Uint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: i64) -> Self::Output

Performs the >> operation. Read more
Source§

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

Source§

type Output = Uint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: i8) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<i8> for Uint

Source§

type Output = Uint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: i8) -> Self::Output

Performs the >> operation. Read more
Source§

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

Source§

type Output = Uint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: isize) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<isize> for Uint

Source§

type Output = Uint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: isize) -> Self::Output

Performs the >> operation. Read more
Source§

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

Source§

type Output = Uint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: u128) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<u128> for Uint

Source§

type Output = Uint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: u128) -> Self::Output

Performs the >> operation. Read more
Source§

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

Source§

type Output = Uint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: u16) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<u16> for Uint

Source§

type Output = Uint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: u16) -> Self::Output

Performs the >> operation. Read more
Source§

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

Source§

type Output = Uint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: u32) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<u32> for Uint

Source§

type Output = Uint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: u32) -> Self::Output

Performs the >> operation. Read more
Source§

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

Source§

type Output = Uint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: u64) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<u64> for Uint

Source§

type Output = Uint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: u64) -> Self::Output

Performs the >> operation. Read more
Source§

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

Source§

type Output = Uint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: u8) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<u8> for Uint

Source§

type Output = Uint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: u8) -> Self::Output

Performs the >> operation. Read more
Source§

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

Source§

type Output = Uint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: usize) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<usize> for Uint

Source§

type Output = Uint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: usize) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr for Uint

Source§

type Output = Uint

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: Uint) -> Self::Output

Performs the >> operation. Read more
Source§

impl ShrAssign<i128> for Uint

Source§

fn shr_assign(&mut self, rhs: i128)

Performs the >>= operation. Read more
Source§

impl ShrAssign<i16> for Uint

Source§

fn shr_assign(&mut self, rhs: i16)

Performs the >>= operation. Read more
Source§

impl ShrAssign<i32> for Uint

Source§

fn shr_assign(&mut self, rhs: i32)

Performs the >>= operation. Read more
Source§

impl ShrAssign<i64> for Uint

Source§

fn shr_assign(&mut self, rhs: i64)

Performs the >>= operation. Read more
Source§

impl ShrAssign<i8> for Uint

Source§

fn shr_assign(&mut self, rhs: i8)

Performs the >>= operation. Read more
Source§

impl ShrAssign<isize> for Uint

Source§

fn shr_assign(&mut self, rhs: isize)

Performs the >>= operation. Read more
Source§

impl ShrAssign<u128> for Uint

Source§

fn shr_assign(&mut self, rhs: u128)

Performs the >>= operation. Read more
Source§

impl ShrAssign<u16> for Uint

Source§

fn shr_assign(&mut self, rhs: u16)

Performs the >>= operation. Read more
Source§

impl ShrAssign<u32> for Uint

Source§

fn shr_assign(&mut self, rhs: u32)

Performs the >>= operation. Read more
Source§

impl ShrAssign<u64> for Uint

Source§

fn shr_assign(&mut self, rhs: u64)

Performs the >>= operation. Read more
Source§

impl ShrAssign<u8> for Uint

Source§

fn shr_assign(&mut self, rhs: u8)

Performs the >>= operation. Read more
Source§

impl ShrAssign<usize> for Uint

Source§

fn shr_assign(&mut self, rhs: usize)

Performs the >>= operation. Read more
Source§

impl ShrAssign for Uint

Source§

fn shr_assign(&mut self, rhs: Uint)

Performs the >>= operation. Read more
Source§

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

Source§

type Output = Uint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &'b Uint) -> Self::Output

Performs the - operation. Read more
Source§

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

Source§

type Output = Uint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &'a Uint) -> Self::Output

Performs the - operation. Read more
Source§

impl<'a> Sub<&'a Uint> for i128

Source§

type Output = i128

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &'a Uint) -> Self::Output

Performs the - operation. Read more
Source§

impl<'a> Sub<&'a Uint> for i16

Source§

type Output = i16

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &'a Uint) -> Self::Output

Performs the - operation. Read more
Source§

impl<'a> Sub<&'a Uint> for i32

Source§

type Output = i32

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &'a Uint) -> Self::Output

Performs the - operation. Read more
Source§

impl<'a> Sub<&'a Uint> for i64

Source§

type Output = i64

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &'a Uint) -> Self::Output

Performs the - operation. Read more
Source§

impl<'a> Sub<&'a Uint> for i8

Source§

type Output = i8

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &'a Uint) -> Self::Output

Performs the - operation. Read more
Source§

impl<'a> Sub<&'a Uint> for isize

Source§

type Output = isize

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &'a Uint) -> Self::Output

Performs the - operation. Read more
Source§

impl<'a> Sub<&'a Uint> for u128

Source§

type Output = u128

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &'a Uint) -> Self::Output

Performs the - operation. Read more
Source§

impl<'a> Sub<&'a Uint> for u16

Source§

type Output = u16

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &'a Uint) -> Self::Output

Performs the - operation. Read more
Source§

impl<'a> Sub<&'a Uint> for u32

Source§

type Output = u32

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &'a Uint) -> Self::Output

Performs the - operation. Read more
Source§

impl<'a> Sub<&'a Uint> for u64

Source§

type Output = u64

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &'a Uint) -> Self::Output

Performs the - operation. Read more
Source§

impl<'a> Sub<&'a Uint> for u8

Source§

type Output = u8

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &'a Uint) -> Self::Output

Performs the - operation. Read more
Source§

impl<'a> Sub<&'a Uint> for usize

Source§

type Output = usize

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &'a Uint) -> Self::Output

Performs the - operation. Read more
Source§

impl<'b> Sub<Uint> for &'b Uint

Source§

type Output = Uint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Uint) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<Uint> for i128

Source§

type Output = i128

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Uint) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<Uint> for i16

Source§

type Output = i16

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Uint) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<Uint> for i32

Source§

type Output = i32

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Uint) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<Uint> for i64

Source§

type Output = i64

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Uint) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<Uint> for i8

Source§

type Output = i8

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Uint) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<Uint> for isize

Source§

type Output = isize

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Uint) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<Uint> for u128

Source§

type Output = u128

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Uint) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<Uint> for u16

Source§

type Output = u16

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Uint) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<Uint> for u32

Source§

type Output = u32

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Uint) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<Uint> for u64

Source§

type Output = u64

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Uint) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<Uint> for u8

Source§

type Output = u8

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Uint) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<Uint> for usize

Source§

type Output = usize

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Uint) -> Self::Output

Performs the - operation. Read more
Source§

impl<'a> Sub<i128> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: i128) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<i128> for Uint

Source§

type Output = Uint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: i128) -> Self::Output

Performs the - operation. Read more
Source§

impl<'a> Sub<i16> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: i16) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<i16> for Uint

Source§

type Output = Uint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: i16) -> Self::Output

Performs the - operation. Read more
Source§

impl<'a> Sub<i32> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: i32) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<i32> for Uint

Source§

type Output = Uint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: i32) -> Self::Output

Performs the - operation. Read more
Source§

impl<'a> Sub<i64> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: i64) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<i64> for Uint

Source§

type Output = Uint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: i64) -> Self::Output

Performs the - operation. Read more
Source§

impl<'a> Sub<i8> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: i8) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<i8> for Uint

Source§

type Output = Uint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: i8) -> Self::Output

Performs the - operation. Read more
Source§

impl<'a> Sub<isize> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: isize) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<isize> for Uint

Source§

type Output = Uint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: isize) -> Self::Output

Performs the - operation. Read more
Source§

impl<'a> Sub<u128> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u128) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<u128> for Uint

Source§

type Output = Uint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u128) -> Self::Output

Performs the - operation. Read more
Source§

impl<'a> Sub<u16> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u16) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<u16> for Uint

Source§

type Output = Uint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u16) -> Self::Output

Performs the - operation. Read more
Source§

impl<'a> Sub<u32> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u32) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<u32> for Uint

Source§

type Output = Uint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u32) -> Self::Output

Performs the - operation. Read more
Source§

impl<'a> Sub<u64> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u64) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<u64> for Uint

Source§

type Output = Uint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u64) -> Self::Output

Performs the - operation. Read more
Source§

impl<'a> Sub<u8> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u8) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<u8> for Uint

Source§

type Output = Uint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u8) -> Self::Output

Performs the - operation. Read more
Source§

impl<'a> Sub<usize> for &'a Uint

Source§

type Output = Uint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: usize) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<usize> for Uint

Source§

type Output = Uint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: usize) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub for Uint

Source§

type Output = Uint

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Uint) -> Self::Output

Performs the - operation. Read more
Source§

impl SubAssign<i128> for Uint

Source§

fn sub_assign(&mut self, rhs: i128)

Performs the -= operation. Read more
Source§

impl SubAssign<i16> for Uint

Source§

fn sub_assign(&mut self, rhs: i16)

Performs the -= operation. Read more
Source§

impl SubAssign<i32> for Uint

Source§

fn sub_assign(&mut self, rhs: i32)

Performs the -= operation. Read more
Source§

impl SubAssign<i64> for Uint

Source§

fn sub_assign(&mut self, rhs: i64)

Performs the -= operation. Read more
Source§

impl SubAssign<i8> for Uint

Source§

fn sub_assign(&mut self, rhs: i8)

Performs the -= operation. Read more
Source§

impl SubAssign<isize> for Uint

Source§

fn sub_assign(&mut self, rhs: isize)

Performs the -= operation. Read more
Source§

impl SubAssign<u128> for Uint

Source§

fn sub_assign(&mut self, rhs: u128)

Performs the -= operation. Read more
Source§

impl SubAssign<u16> for Uint

Source§

fn sub_assign(&mut self, rhs: u16)

Performs the -= operation. Read more
Source§

impl SubAssign<u32> for Uint

Source§

fn sub_assign(&mut self, rhs: u32)

Performs the -= operation. Read more
Source§

impl SubAssign<u64> for Uint

Source§

fn sub_assign(&mut self, rhs: u64)

Performs the -= operation. Read more
Source§

impl SubAssign<u8> for Uint

Source§

fn sub_assign(&mut self, rhs: u8)

Performs the -= operation. Read more
Source§

impl SubAssign<usize> for Uint

Source§

fn sub_assign(&mut self, rhs: usize)

Performs the -= operation. Read more
Source§

impl SubAssign for Uint

Source§

fn sub_assign(&mut self, rhs: Uint)

Performs the -= operation. Read more
Source§

impl Sum<i16> for Uint

Source§

fn sum<I: Iterator<Item = i16>>(iter: I) -> Self

Takes an iterator and generates Self from the elements by “summing up” the items.
Source§

impl Sum<i32> for Uint

Source§

fn sum<I: Iterator<Item = i32>>(iter: I) -> Self

Takes an iterator and generates Self from the elements by “summing up” the items.
Source§

impl Sum<i64> for Uint

Source§

fn sum<I: Iterator<Item = i64>>(iter: I) -> Self

Takes an iterator and generates Self from the elements by “summing up” the items.
Source§

impl Sum<i8> for Uint

Source§

fn sum<I: Iterator<Item = i8>>(iter: I) -> Self

Takes an iterator and generates Self from the elements by “summing up” the items.
Source§

impl Sum<isize> for Uint

Source§

fn sum<I: Iterator<Item = isize>>(iter: I) -> Self

Takes an iterator and generates Self from the elements by “summing up” the items.
Source§

impl Sum<u128> for Uint

Source§

fn sum<I: Iterator<Item = u128>>(iter: I) -> Self

Takes an iterator and generates Self from the elements by “summing up” the items.
Source§

impl Sum<u16> for Uint

Source§

fn sum<I: Iterator<Item = u16>>(iter: I) -> Self

Takes an iterator and generates Self from the elements by “summing up” the items.
Source§

impl Sum<u32> for Uint

Source§

fn sum<I: Iterator<Item = u32>>(iter: I) -> Self

Takes an iterator and generates Self from the elements by “summing up” the items.
Source§

impl Sum<u64> for Uint

Source§

fn sum<I: Iterator<Item = u64>>(iter: I) -> Self

Takes an iterator and generates Self from the elements by “summing up” the items.
Source§

impl Sum<u8> for Uint

Source§

fn sum<I: Iterator<Item = u8>>(iter: I) -> Self

Takes an iterator and generates Self from the elements by “summing up” the items.
Source§

impl Sum<usize> for Uint

Source§

fn sum<I: Iterator<Item = usize>>(iter: I) -> Self

Takes an iterator and generates Self from the elements by “summing up” the items.
Source§

impl Sum for Uint

Source§

fn sum<I: Iterator<Item = Self>>(iter: I) -> Self

Takes an iterator and generates Self from the elements by “summing up” the items.
Source§

impl TryFrom<&[u8]> for Uint

Source§

type Error = &'static str

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

fn try_from(value: &[u8]) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<&Box<Vec<u8>>> for Uint

Available on crate features alloc or std only.
Source§

type Error = &'static str

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

fn try_from(value: &Box<Vec<u8>>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<&Vec<u8>> for Uint

Available on crate features alloc or std only.
Source§

type Error = &'static str

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

fn try_from(value: &Vec<u8>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl Copy for Uint

Source§

impl Eq for Uint

Source§

impl StructuralPartialEq for Uint

Auto Trait Implementations§

§

impl Freeze for Uint

§

impl RefUnwindSafe for Uint

§

impl Send for Uint

§

impl Sync for Uint

§

impl Unpin for Uint

§

impl UnwindSafe for Uint

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

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

Source§

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

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

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

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

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

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

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

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

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

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

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

Source§

fn to_string(&self) -> String

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

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

Source§

type Error = Infallible

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

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

Performs the conversion.
Source§

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

Source§

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

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

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

Performs the conversion.
Source§

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