Struct std::num::Saturating
#[repr(transparent)]pub struct Saturating<T>(pub T);
Provides intentionally-saturating arithmetic on T
.
Operations like +
on u32
values are intended to never overflow, and in some debug configurations overflow is detected and results in a panic. While most arithmetic falls into this category, some code explicitly expects and relies upon saturating arithmetic.
Saturating arithmetic can be achieved either through methods like saturating_add
, or through the Saturating<T>
type, which says that all standard arithmetic operations on the underlying value are intended to have saturating semantics.
The underlying value can be retrieved through the .0
index of the Saturating
tuple.
Examples
#![feature(saturating_int_impl)] use std::num::Saturating; let max = Saturating(u32::MAX); let one = Saturating(1u32); assert_eq!(u32::MAX, (max + one).0);
Tuple Fields
0: T
Implementations
impl Saturating<usize>
pub const MIN: Saturating<usize>
Returns the smallest value that can be represented by this integer type.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(<Saturating<usize>>::MIN, Saturating(usize::MIN));
pub const MAX: Saturating<usize>
Returns the largest value that can be represented by this integer type.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(<Saturating<usize>>::MAX, Saturating(usize::MAX));
pub const BITS: u32
Returns the size of this integer type in bits.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(<Saturating<usize>>::BITS, usize::BITS);
pub const fn count_ones(self) -> u32
Returns the number of ones in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0b01001100usize); assert_eq!(n.count_ones(), 3);
pub const fn count_zeros(self) -> u32
Returns the number of zeros in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(!0usize).count_zeros(), 0);
pub const fn trailing_zeros(self) -> u32
Returns the number of trailing zeros in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0b0101000usize); assert_eq!(n.trailing_zeros(), 3);
pub const fn rotate_left(self, n: u32) -> Saturating<usize>
Shifts the bits to the left by a specified amount, n
, saturating the truncated bits to the end of the resulting integer.
Please note this isn’t the same operation as the <<
shifting operator!
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n: Saturating<i64> = Saturating(0x0123456789ABCDEF); let m: Saturating<i64> = Saturating(-0x76543210FEDCBA99); assert_eq!(n.rotate_left(32), m);
pub const fn rotate_right(self, n: u32) -> Saturating<usize>
Shifts the bits to the right by a specified amount, n
, saturating the truncated bits to the beginning of the resulting integer.
Please note this isn’t the same operation as the >>
shifting operator!
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n: Saturating<i64> = Saturating(0x0123456789ABCDEF); let m: Saturating<i64> = Saturating(-0xFEDCBA987654322); assert_eq!(n.rotate_right(4), m);
pub const fn swap_bytes(self) -> Saturating<usize>
Reverses the byte order of the integer.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n: Saturating<i16> = Saturating(0b0000000_01010101); assert_eq!(n, Saturating(85)); let m = n.swap_bytes(); assert_eq!(m, Saturating(0b01010101_00000000)); assert_eq!(m, Saturating(21760));
pub const fn reverse_bits(self) -> Saturating<usize>
Reverses the bit pattern of the integer.
Examples
Please note that this example is shared between integer types. Which explains why i16
is used here.
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0b0000000_01010101i16); assert_eq!(n, Saturating(85)); let m = n.reverse_bits(); assert_eq!(m.0 as u16, 0b10101010_00000000); assert_eq!(m, Saturating(-22016));
pub const fn from_be(x: Saturating<usize>) -> Saturating<usize>
Converts an integer from big endian to the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Ausize); if cfg!(target_endian = "big") { assert_eq!(<Saturating<usize>>::from_be(n), n) } else { assert_eq!(<Saturating<usize>>::from_be(n), n.swap_bytes()) }
pub const fn from_le(x: Saturating<usize>) -> Saturating<usize>
Converts an integer from little endian to the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Ausize); if cfg!(target_endian = "little") { assert_eq!(<Saturating<usize>>::from_le(n), n) } else { assert_eq!(<Saturating<usize>>::from_le(n), n.swap_bytes()) }
pub const fn to_be(self) -> Saturating<usize>
Converts self
to big endian from the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Ausize); if cfg!(target_endian = "big") { assert_eq!(n.to_be(), n) } else { assert_eq!(n.to_be(), n.swap_bytes()) }
pub const fn to_le(self) -> Saturating<usize>
Converts self
to little endian from the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Ausize); if cfg!(target_endian = "little") { assert_eq!(n.to_le(), n) } else { assert_eq!(n.to_le(), n.swap_bytes()) }
pub fn pow(self, exp: u32) -> Saturating<usize>
Raises self to the power of exp
, using exponentiation by squaring.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(3usize).pow(4), Saturating(81));
Results that are too large are saturated:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(3i8).pow(5), Saturating(127)); assert_eq!(Saturating(3i8).pow(6), Saturating(127));
impl Saturating<u8>
pub const MIN: Saturating<u8>
Returns the smallest value that can be represented by this integer type.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(<Saturating<u8>>::MIN, Saturating(u8::MIN));
pub const MAX: Saturating<u8>
Returns the largest value that can be represented by this integer type.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(<Saturating<u8>>::MAX, Saturating(u8::MAX));
pub const BITS: u32
Returns the size of this integer type in bits.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(<Saturating<u8>>::BITS, u8::BITS);
pub const fn count_ones(self) -> u32
Returns the number of ones in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0b01001100u8); assert_eq!(n.count_ones(), 3);
pub const fn count_zeros(self) -> u32
Returns the number of zeros in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(!0u8).count_zeros(), 0);
pub const fn trailing_zeros(self) -> u32
Returns the number of trailing zeros in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0b0101000u8); assert_eq!(n.trailing_zeros(), 3);
pub const fn rotate_left(self, n: u32) -> Saturating<u8>
Shifts the bits to the left by a specified amount, n
, saturating the truncated bits to the end of the resulting integer.
Please note this isn’t the same operation as the <<
shifting operator!
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n: Saturating<i64> = Saturating(0x0123456789ABCDEF); let m: Saturating<i64> = Saturating(-0x76543210FEDCBA99); assert_eq!(n.rotate_left(32), m);
pub const fn rotate_right(self, n: u32) -> Saturating<u8>
Shifts the bits to the right by a specified amount, n
, saturating the truncated bits to the beginning of the resulting integer.
Please note this isn’t the same operation as the >>
shifting operator!
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n: Saturating<i64> = Saturating(0x0123456789ABCDEF); let m: Saturating<i64> = Saturating(-0xFEDCBA987654322); assert_eq!(n.rotate_right(4), m);
pub const fn swap_bytes(self) -> Saturating<u8>
Reverses the byte order of the integer.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n: Saturating<i16> = Saturating(0b0000000_01010101); assert_eq!(n, Saturating(85)); let m = n.swap_bytes(); assert_eq!(m, Saturating(0b01010101_00000000)); assert_eq!(m, Saturating(21760));
pub const fn reverse_bits(self) -> Saturating<u8>
Reverses the bit pattern of the integer.
Examples
Please note that this example is shared between integer types. Which explains why i16
is used here.
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0b0000000_01010101i16); assert_eq!(n, Saturating(85)); let m = n.reverse_bits(); assert_eq!(m.0 as u16, 0b10101010_00000000); assert_eq!(m, Saturating(-22016));
pub const fn from_be(x: Saturating<u8>) -> Saturating<u8>
Converts an integer from big endian to the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Au8); if cfg!(target_endian = "big") { assert_eq!(<Saturating<u8>>::from_be(n), n) } else { assert_eq!(<Saturating<u8>>::from_be(n), n.swap_bytes()) }
pub const fn from_le(x: Saturating<u8>) -> Saturating<u8>
Converts an integer from little endian to the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Au8); if cfg!(target_endian = "little") { assert_eq!(<Saturating<u8>>::from_le(n), n) } else { assert_eq!(<Saturating<u8>>::from_le(n), n.swap_bytes()) }
pub const fn to_be(self) -> Saturating<u8>
Converts self
to big endian from the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Au8); if cfg!(target_endian = "big") { assert_eq!(n.to_be(), n) } else { assert_eq!(n.to_be(), n.swap_bytes()) }
pub const fn to_le(self) -> Saturating<u8>
Converts self
to little endian from the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Au8); if cfg!(target_endian = "little") { assert_eq!(n.to_le(), n) } else { assert_eq!(n.to_le(), n.swap_bytes()) }
pub fn pow(self, exp: u32) -> Saturating<u8>
Raises self to the power of exp
, using exponentiation by squaring.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(3u8).pow(4), Saturating(81));
Results that are too large are saturated:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(3i8).pow(5), Saturating(127)); assert_eq!(Saturating(3i8).pow(6), Saturating(127));
impl Saturating<u16>
pub const MIN: Saturating<u16>
Returns the smallest value that can be represented by this integer type.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(<Saturating<u16>>::MIN, Saturating(u16::MIN));
pub const MAX: Saturating<u16>
Returns the largest value that can be represented by this integer type.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(<Saturating<u16>>::MAX, Saturating(u16::MAX));
pub const BITS: u32
Returns the size of this integer type in bits.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(<Saturating<u16>>::BITS, u16::BITS);
pub const fn count_ones(self) -> u32
Returns the number of ones in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0b01001100u16); assert_eq!(n.count_ones(), 3);
pub const fn count_zeros(self) -> u32
Returns the number of zeros in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(!0u16).count_zeros(), 0);
pub const fn trailing_zeros(self) -> u32
Returns the number of trailing zeros in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0b0101000u16); assert_eq!(n.trailing_zeros(), 3);
pub const fn rotate_left(self, n: u32) -> Saturating<u16>
Shifts the bits to the left by a specified amount, n
, saturating the truncated bits to the end of the resulting integer.
Please note this isn’t the same operation as the <<
shifting operator!
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n: Saturating<i64> = Saturating(0x0123456789ABCDEF); let m: Saturating<i64> = Saturating(-0x76543210FEDCBA99); assert_eq!(n.rotate_left(32), m);
pub const fn rotate_right(self, n: u32) -> Saturating<u16>
Shifts the bits to the right by a specified amount, n
, saturating the truncated bits to the beginning of the resulting integer.
Please note this isn’t the same operation as the >>
shifting operator!
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n: Saturating<i64> = Saturating(0x0123456789ABCDEF); let m: Saturating<i64> = Saturating(-0xFEDCBA987654322); assert_eq!(n.rotate_right(4), m);
pub const fn swap_bytes(self) -> Saturating<u16>
Reverses the byte order of the integer.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n: Saturating<i16> = Saturating(0b0000000_01010101); assert_eq!(n, Saturating(85)); let m = n.swap_bytes(); assert_eq!(m, Saturating(0b01010101_00000000)); assert_eq!(m, Saturating(21760));
pub const fn reverse_bits(self) -> Saturating<u16>
Reverses the bit pattern of the integer.
Examples
Please note that this example is shared between integer types. Which explains why i16
is used here.
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0b0000000_01010101i16); assert_eq!(n, Saturating(85)); let m = n.reverse_bits(); assert_eq!(m.0 as u16, 0b10101010_00000000); assert_eq!(m, Saturating(-22016));
pub const fn from_be(x: Saturating<u16>) -> Saturating<u16>
Converts an integer from big endian to the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Au16); if cfg!(target_endian = "big") { assert_eq!(<Saturating<u16>>::from_be(n), n) } else { assert_eq!(<Saturating<u16>>::from_be(n), n.swap_bytes()) }
pub const fn from_le(x: Saturating<u16>) -> Saturating<u16>
Converts an integer from little endian to the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Au16); if cfg!(target_endian = "little") { assert_eq!(<Saturating<u16>>::from_le(n), n) } else { assert_eq!(<Saturating<u16>>::from_le(n), n.swap_bytes()) }
pub const fn to_be(self) -> Saturating<u16>
Converts self
to big endian from the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Au16); if cfg!(target_endian = "big") { assert_eq!(n.to_be(), n) } else { assert_eq!(n.to_be(), n.swap_bytes()) }
pub const fn to_le(self) -> Saturating<u16>
Converts self
to little endian from the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Au16); if cfg!(target_endian = "little") { assert_eq!(n.to_le(), n) } else { assert_eq!(n.to_le(), n.swap_bytes()) }
pub fn pow(self, exp: u32) -> Saturating<u16>
Raises self to the power of exp
, using exponentiation by squaring.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(3u16).pow(4), Saturating(81));
Results that are too large are saturated:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(3i8).pow(5), Saturating(127)); assert_eq!(Saturating(3i8).pow(6), Saturating(127));
impl Saturating<u32>
pub const MIN: Saturating<u32>
Returns the smallest value that can be represented by this integer type.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(<Saturating<u32>>::MIN, Saturating(u32::MIN));
pub const MAX: Saturating<u32>
Returns the largest value that can be represented by this integer type.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(<Saturating<u32>>::MAX, Saturating(u32::MAX));
pub const BITS: u32
Returns the size of this integer type in bits.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(<Saturating<u32>>::BITS, u32::BITS);
pub const fn count_ones(self) -> u32
Returns the number of ones in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0b01001100u32); assert_eq!(n.count_ones(), 3);
pub const fn count_zeros(self) -> u32
Returns the number of zeros in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(!0u32).count_zeros(), 0);
pub const fn trailing_zeros(self) -> u32
Returns the number of trailing zeros in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0b0101000u32); assert_eq!(n.trailing_zeros(), 3);
pub const fn rotate_left(self, n: u32) -> Saturating<u32>
Shifts the bits to the left by a specified amount, n
, saturating the truncated bits to the end of the resulting integer.
Please note this isn’t the same operation as the <<
shifting operator!
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n: Saturating<i64> = Saturating(0x0123456789ABCDEF); let m: Saturating<i64> = Saturating(-0x76543210FEDCBA99); assert_eq!(n.rotate_left(32), m);
pub const fn rotate_right(self, n: u32) -> Saturating<u32>
Shifts the bits to the right by a specified amount, n
, saturating the truncated bits to the beginning of the resulting integer.
Please note this isn’t the same operation as the >>
shifting operator!
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n: Saturating<i64> = Saturating(0x0123456789ABCDEF); let m: Saturating<i64> = Saturating(-0xFEDCBA987654322); assert_eq!(n.rotate_right(4), m);
pub const fn swap_bytes(self) -> Saturating<u32>
Reverses the byte order of the integer.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n: Saturating<i16> = Saturating(0b0000000_01010101); assert_eq!(n, Saturating(85)); let m = n.swap_bytes(); assert_eq!(m, Saturating(0b01010101_00000000)); assert_eq!(m, Saturating(21760));
pub const fn reverse_bits(self) -> Saturating<u32>
Reverses the bit pattern of the integer.
Examples
Please note that this example is shared between integer types. Which explains why i16
is used here.
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0b0000000_01010101i16); assert_eq!(n, Saturating(85)); let m = n.reverse_bits(); assert_eq!(m.0 as u16, 0b10101010_00000000); assert_eq!(m, Saturating(-22016));
pub const fn from_be(x: Saturating<u32>) -> Saturating<u32>
Converts an integer from big endian to the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Au32); if cfg!(target_endian = "big") { assert_eq!(<Saturating<u32>>::from_be(n), n) } else { assert_eq!(<Saturating<u32>>::from_be(n), n.swap_bytes()) }
pub const fn from_le(x: Saturating<u32>) -> Saturating<u32>
Converts an integer from little endian to the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Au32); if cfg!(target_endian = "little") { assert_eq!(<Saturating<u32>>::from_le(n), n) } else { assert_eq!(<Saturating<u32>>::from_le(n), n.swap_bytes()) }
pub const fn to_be(self) -> Saturating<u32>
Converts self
to big endian from the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Au32); if cfg!(target_endian = "big") { assert_eq!(n.to_be(), n) } else { assert_eq!(n.to_be(), n.swap_bytes()) }
pub const fn to_le(self) -> Saturating<u32>
Converts self
to little endian from the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Au32); if cfg!(target_endian = "little") { assert_eq!(n.to_le(), n) } else { assert_eq!(n.to_le(), n.swap_bytes()) }
pub fn pow(self, exp: u32) -> Saturating<u32>
Raises self to the power of exp
, using exponentiation by squaring.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(3u32).pow(4), Saturating(81));
Results that are too large are saturated:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(3i8).pow(5), Saturating(127)); assert_eq!(Saturating(3i8).pow(6), Saturating(127));
impl Saturating<u64>
pub const MIN: Saturating<u64>
Returns the smallest value that can be represented by this integer type.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(<Saturating<u64>>::MIN, Saturating(u64::MIN));
pub const MAX: Saturating<u64>
Returns the largest value that can be represented by this integer type.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(<Saturating<u64>>::MAX, Saturating(u64::MAX));
pub const BITS: u32
Returns the size of this integer type in bits.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(<Saturating<u64>>::BITS, u64::BITS);
pub const fn count_ones(self) -> u32
Returns the number of ones in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0b01001100u64); assert_eq!(n.count_ones(), 3);
pub const fn count_zeros(self) -> u32
Returns the number of zeros in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(!0u64).count_zeros(), 0);
pub const fn trailing_zeros(self) -> u32
Returns the number of trailing zeros in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0b0101000u64); assert_eq!(n.trailing_zeros(), 3);
pub const fn rotate_left(self, n: u32) -> Saturating<u64>
Shifts the bits to the left by a specified amount, n
, saturating the truncated bits to the end of the resulting integer.
Please note this isn’t the same operation as the <<
shifting operator!
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n: Saturating<i64> = Saturating(0x0123456789ABCDEF); let m: Saturating<i64> = Saturating(-0x76543210FEDCBA99); assert_eq!(n.rotate_left(32), m);
pub const fn rotate_right(self, n: u32) -> Saturating<u64>
Shifts the bits to the right by a specified amount, n
, saturating the truncated bits to the beginning of the resulting integer.
Please note this isn’t the same operation as the >>
shifting operator!
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n: Saturating<i64> = Saturating(0x0123456789ABCDEF); let m: Saturating<i64> = Saturating(-0xFEDCBA987654322); assert_eq!(n.rotate_right(4), m);
pub const fn swap_bytes(self) -> Saturating<u64>
Reverses the byte order of the integer.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n: Saturating<i16> = Saturating(0b0000000_01010101); assert_eq!(n, Saturating(85)); let m = n.swap_bytes(); assert_eq!(m, Saturating(0b01010101_00000000)); assert_eq!(m, Saturating(21760));
pub const fn reverse_bits(self) -> Saturating<u64>
Reverses the bit pattern of the integer.
Examples
Please note that this example is shared between integer types. Which explains why i16
is used here.
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0b0000000_01010101i16); assert_eq!(n, Saturating(85)); let m = n.reverse_bits(); assert_eq!(m.0 as u16, 0b10101010_00000000); assert_eq!(m, Saturating(-22016));
pub const fn from_be(x: Saturating<u64>) -> Saturating<u64>
Converts an integer from big endian to the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Au64); if cfg!(target_endian = "big") { assert_eq!(<Saturating<u64>>::from_be(n), n) } else { assert_eq!(<Saturating<u64>>::from_be(n), n.swap_bytes()) }
pub const fn from_le(x: Saturating<u64>) -> Saturating<u64>
Converts an integer from little endian to the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Au64); if cfg!(target_endian = "little") { assert_eq!(<Saturating<u64>>::from_le(n), n) } else { assert_eq!(<Saturating<u64>>::from_le(n), n.swap_bytes()) }
pub const fn to_be(self) -> Saturating<u64>
Converts self
to big endian from the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Au64); if cfg!(target_endian = "big") { assert_eq!(n.to_be(), n) } else { assert_eq!(n.to_be(), n.swap_bytes()) }
pub const fn to_le(self) -> Saturating<u64>
Converts self
to little endian from the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Au64); if cfg!(target_endian = "little") { assert_eq!(n.to_le(), n) } else { assert_eq!(n.to_le(), n.swap_bytes()) }
pub fn pow(self, exp: u32) -> Saturating<u64>
Raises self to the power of exp
, using exponentiation by squaring.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(3u64).pow(4), Saturating(81));
Results that are too large are saturated:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(3i8).pow(5), Saturating(127)); assert_eq!(Saturating(3i8).pow(6), Saturating(127));
impl Saturating<u128>
pub const MIN: Saturating<u128>
Returns the smallest value that can be represented by this integer type.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(<Saturating<u128>>::MIN, Saturating(u128::MIN));
pub const MAX: Saturating<u128>
Returns the largest value that can be represented by this integer type.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(<Saturating<u128>>::MAX, Saturating(u128::MAX));
pub const BITS: u32
Returns the size of this integer type in bits.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(<Saturating<u128>>::BITS, u128::BITS);
pub const fn count_ones(self) -> u32
Returns the number of ones in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0b01001100u128); assert_eq!(n.count_ones(), 3);
pub const fn count_zeros(self) -> u32
Returns the number of zeros in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(!0u128).count_zeros(), 0);
pub const fn trailing_zeros(self) -> u32
Returns the number of trailing zeros in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0b0101000u128); assert_eq!(n.trailing_zeros(), 3);
pub const fn rotate_left(self, n: u32) -> Saturating<u128>
Shifts the bits to the left by a specified amount, n
, saturating the truncated bits to the end of the resulting integer.
Please note this isn’t the same operation as the <<
shifting operator!
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n: Saturating<i64> = Saturating(0x0123456789ABCDEF); let m: Saturating<i64> = Saturating(-0x76543210FEDCBA99); assert_eq!(n.rotate_left(32), m);
pub const fn rotate_right(self, n: u32) -> Saturating<u128>
Shifts the bits to the right by a specified amount, n
, saturating the truncated bits to the beginning of the resulting integer.
Please note this isn’t the same operation as the >>
shifting operator!
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n: Saturating<i64> = Saturating(0x0123456789ABCDEF); let m: Saturating<i64> = Saturating(-0xFEDCBA987654322); assert_eq!(n.rotate_right(4), m);
pub const fn swap_bytes(self) -> Saturating<u128>
Reverses the byte order of the integer.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n: Saturating<i16> = Saturating(0b0000000_01010101); assert_eq!(n, Saturating(85)); let m = n.swap_bytes(); assert_eq!(m, Saturating(0b01010101_00000000)); assert_eq!(m, Saturating(21760));
pub const fn reverse_bits(self) -> Saturating<u128>
Reverses the bit pattern of the integer.
Examples
Please note that this example is shared between integer types. Which explains why i16
is used here.
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0b0000000_01010101i16); assert_eq!(n, Saturating(85)); let m = n.reverse_bits(); assert_eq!(m.0 as u16, 0b10101010_00000000); assert_eq!(m, Saturating(-22016));
pub const fn from_be(x: Saturating<u128>) -> Saturating<u128>
Converts an integer from big endian to the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Au128); if cfg!(target_endian = "big") { assert_eq!(<Saturating<u128>>::from_be(n), n) } else { assert_eq!(<Saturating<u128>>::from_be(n), n.swap_bytes()) }
pub const fn from_le(x: Saturating<u128>) -> Saturating<u128>
Converts an integer from little endian to the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Au128); if cfg!(target_endian = "little") { assert_eq!(<Saturating<u128>>::from_le(n), n) } else { assert_eq!(<Saturating<u128>>::from_le(n), n.swap_bytes()) }
pub const fn to_be(self) -> Saturating<u128>
Converts self
to big endian from the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Au128); if cfg!(target_endian = "big") { assert_eq!(n.to_be(), n) } else { assert_eq!(n.to_be(), n.swap_bytes()) }
pub const fn to_le(self) -> Saturating<u128>
Converts self
to little endian from the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Au128); if cfg!(target_endian = "little") { assert_eq!(n.to_le(), n) } else { assert_eq!(n.to_le(), n.swap_bytes()) }
pub fn pow(self, exp: u32) -> Saturating<u128>
Raises self to the power of exp
, using exponentiation by squaring.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(3u128).pow(4), Saturating(81));
Results that are too large are saturated:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(3i8).pow(5), Saturating(127)); assert_eq!(Saturating(3i8).pow(6), Saturating(127));
impl Saturating<isize>
pub const MIN: Saturating<isize>
Returns the smallest value that can be represented by this integer type.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(<Saturating<isize>>::MIN, Saturating(isize::MIN));
pub const MAX: Saturating<isize>
Returns the largest value that can be represented by this integer type.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(<Saturating<isize>>::MAX, Saturating(isize::MAX));
pub const BITS: u32
Returns the size of this integer type in bits.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(<Saturating<isize>>::BITS, isize::BITS);
pub const fn count_ones(self) -> u32
Returns the number of ones in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0b01001100isize); assert_eq!(n.count_ones(), 3);
pub const fn count_zeros(self) -> u32
Returns the number of zeros in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(!0isize).count_zeros(), 0);
pub const fn trailing_zeros(self) -> u32
Returns the number of trailing zeros in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0b0101000isize); assert_eq!(n.trailing_zeros(), 3);
pub const fn rotate_left(self, n: u32) -> Saturating<isize>
Shifts the bits to the left by a specified amount, n
, saturating the truncated bits to the end of the resulting integer.
Please note this isn’t the same operation as the <<
shifting operator!
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n: Saturating<i64> = Saturating(0x0123456789ABCDEF); let m: Saturating<i64> = Saturating(-0x76543210FEDCBA99); assert_eq!(n.rotate_left(32), m);
pub const fn rotate_right(self, n: u32) -> Saturating<isize>
Shifts the bits to the right by a specified amount, n
, saturating the truncated bits to the beginning of the resulting integer.
Please note this isn’t the same operation as the >>
shifting operator!
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n: Saturating<i64> = Saturating(0x0123456789ABCDEF); let m: Saturating<i64> = Saturating(-0xFEDCBA987654322); assert_eq!(n.rotate_right(4), m);
pub const fn swap_bytes(self) -> Saturating<isize>
Reverses the byte order of the integer.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n: Saturating<i16> = Saturating(0b0000000_01010101); assert_eq!(n, Saturating(85)); let m = n.swap_bytes(); assert_eq!(m, Saturating(0b01010101_00000000)); assert_eq!(m, Saturating(21760));
pub const fn reverse_bits(self) -> Saturating<isize>
Reverses the bit pattern of the integer.
Examples
Please note that this example is shared between integer types. Which explains why i16
is used here.
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0b0000000_01010101i16); assert_eq!(n, Saturating(85)); let m = n.reverse_bits(); assert_eq!(m.0 as u16, 0b10101010_00000000); assert_eq!(m, Saturating(-22016));
pub const fn from_be(x: Saturating<isize>) -> Saturating<isize>
Converts an integer from big endian to the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Aisize); if cfg!(target_endian = "big") { assert_eq!(<Saturating<isize>>::from_be(n), n) } else { assert_eq!(<Saturating<isize>>::from_be(n), n.swap_bytes()) }
pub const fn from_le(x: Saturating<isize>) -> Saturating<isize>
Converts an integer from little endian to the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Aisize); if cfg!(target_endian = "little") { assert_eq!(<Saturating<isize>>::from_le(n), n) } else { assert_eq!(<Saturating<isize>>::from_le(n), n.swap_bytes()) }
pub const fn to_be(self) -> Saturating<isize>
Converts self
to big endian from the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Aisize); if cfg!(target_endian = "big") { assert_eq!(n.to_be(), n) } else { assert_eq!(n.to_be(), n.swap_bytes()) }
pub const fn to_le(self) -> Saturating<isize>
Converts self
to little endian from the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Aisize); if cfg!(target_endian = "little") { assert_eq!(n.to_le(), n) } else { assert_eq!(n.to_le(), n.swap_bytes()) }
pub fn pow(self, exp: u32) -> Saturating<isize>
Raises self to the power of exp
, using exponentiation by squaring.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(3isize).pow(4), Saturating(81));
Results that are too large are saturated:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(3i8).pow(5), Saturating(127)); assert_eq!(Saturating(3i8).pow(6), Saturating(127));
impl Saturating<i8>
pub const MIN: Saturating<i8>
Returns the smallest value that can be represented by this integer type.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(<Saturating<i8>>::MIN, Saturating(i8::MIN));
pub const MAX: Saturating<i8>
Returns the largest value that can be represented by this integer type.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(<Saturating<i8>>::MAX, Saturating(i8::MAX));
pub const BITS: u32
Returns the size of this integer type in bits.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(<Saturating<i8>>::BITS, i8::BITS);
pub const fn count_ones(self) -> u32
Returns the number of ones in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0b01001100i8); assert_eq!(n.count_ones(), 3);
pub const fn count_zeros(self) -> u32
Returns the number of zeros in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(!0i8).count_zeros(), 0);
pub const fn trailing_zeros(self) -> u32
Returns the number of trailing zeros in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0b0101000i8); assert_eq!(n.trailing_zeros(), 3);
pub const fn rotate_left(self, n: u32) -> Saturating<i8>
Shifts the bits to the left by a specified amount, n
, saturating the truncated bits to the end of the resulting integer.
Please note this isn’t the same operation as the <<
shifting operator!
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n: Saturating<i64> = Saturating(0x0123456789ABCDEF); let m: Saturating<i64> = Saturating(-0x76543210FEDCBA99); assert_eq!(n.rotate_left(32), m);
pub const fn rotate_right(self, n: u32) -> Saturating<i8>
Shifts the bits to the right by a specified amount, n
, saturating the truncated bits to the beginning of the resulting integer.
Please note this isn’t the same operation as the >>
shifting operator!
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n: Saturating<i64> = Saturating(0x0123456789ABCDEF); let m: Saturating<i64> = Saturating(-0xFEDCBA987654322); assert_eq!(n.rotate_right(4), m);
pub const fn swap_bytes(self) -> Saturating<i8>
Reverses the byte order of the integer.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n: Saturating<i16> = Saturating(0b0000000_01010101); assert_eq!(n, Saturating(85)); let m = n.swap_bytes(); assert_eq!(m, Saturating(0b01010101_00000000)); assert_eq!(m, Saturating(21760));
pub const fn reverse_bits(self) -> Saturating<i8>
Reverses the bit pattern of the integer.
Examples
Please note that this example is shared between integer types. Which explains why i16
is used here.
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0b0000000_01010101i16); assert_eq!(n, Saturating(85)); let m = n.reverse_bits(); assert_eq!(m.0 as u16, 0b10101010_00000000); assert_eq!(m, Saturating(-22016));
pub const fn from_be(x: Saturating<i8>) -> Saturating<i8>
Converts an integer from big endian to the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Ai8); if cfg!(target_endian = "big") { assert_eq!(<Saturating<i8>>::from_be(n), n) } else { assert_eq!(<Saturating<i8>>::from_be(n), n.swap_bytes()) }
pub const fn from_le(x: Saturating<i8>) -> Saturating<i8>
Converts an integer from little endian to the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Ai8); if cfg!(target_endian = "little") { assert_eq!(<Saturating<i8>>::from_le(n), n) } else { assert_eq!(<Saturating<i8>>::from_le(n), n.swap_bytes()) }
pub const fn to_be(self) -> Saturating<i8>
Converts self
to big endian from the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Ai8); if cfg!(target_endian = "big") { assert_eq!(n.to_be(), n) } else { assert_eq!(n.to_be(), n.swap_bytes()) }
pub const fn to_le(self) -> Saturating<i8>
Converts self
to little endian from the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Ai8); if cfg!(target_endian = "little") { assert_eq!(n.to_le(), n) } else { assert_eq!(n.to_le(), n.swap_bytes()) }
pub fn pow(self, exp: u32) -> Saturating<i8>
Raises self to the power of exp
, using exponentiation by squaring.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(3i8).pow(4), Saturating(81));
Results that are too large are saturated:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(3i8).pow(5), Saturating(127)); assert_eq!(Saturating(3i8).pow(6), Saturating(127));
impl Saturating<i16>
pub const MIN: Saturating<i16>
Returns the smallest value that can be represented by this integer type.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(<Saturating<i16>>::MIN, Saturating(i16::MIN));
pub const MAX: Saturating<i16>
Returns the largest value that can be represented by this integer type.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(<Saturating<i16>>::MAX, Saturating(i16::MAX));
pub const BITS: u32
Returns the size of this integer type in bits.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(<Saturating<i16>>::BITS, i16::BITS);
pub const fn count_ones(self) -> u32
Returns the number of ones in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0b01001100i16); assert_eq!(n.count_ones(), 3);
pub const fn count_zeros(self) -> u32
Returns the number of zeros in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(!0i16).count_zeros(), 0);
pub const fn trailing_zeros(self) -> u32
Returns the number of trailing zeros in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0b0101000i16); assert_eq!(n.trailing_zeros(), 3);
pub const fn rotate_left(self, n: u32) -> Saturating<i16>
Shifts the bits to the left by a specified amount, n
, saturating the truncated bits to the end of the resulting integer.
Please note this isn’t the same operation as the <<
shifting operator!
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n: Saturating<i64> = Saturating(0x0123456789ABCDEF); let m: Saturating<i64> = Saturating(-0x76543210FEDCBA99); assert_eq!(n.rotate_left(32), m);
pub const fn rotate_right(self, n: u32) -> Saturating<i16>
Shifts the bits to the right by a specified amount, n
, saturating the truncated bits to the beginning of the resulting integer.
Please note this isn’t the same operation as the >>
shifting operator!
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n: Saturating<i64> = Saturating(0x0123456789ABCDEF); let m: Saturating<i64> = Saturating(-0xFEDCBA987654322); assert_eq!(n.rotate_right(4), m);
pub const fn swap_bytes(self) -> Saturating<i16>
Reverses the byte order of the integer.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n: Saturating<i16> = Saturating(0b0000000_01010101); assert_eq!(n, Saturating(85)); let m = n.swap_bytes(); assert_eq!(m, Saturating(0b01010101_00000000)); assert_eq!(m, Saturating(21760));
pub const fn reverse_bits(self) -> Saturating<i16>
Reverses the bit pattern of the integer.
Examples
Please note that this example is shared between integer types. Which explains why i16
is used here.
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0b0000000_01010101i16); assert_eq!(n, Saturating(85)); let m = n.reverse_bits(); assert_eq!(m.0 as u16, 0b10101010_00000000); assert_eq!(m, Saturating(-22016));
pub const fn from_be(x: Saturating<i16>) -> Saturating<i16>
Converts an integer from big endian to the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Ai16); if cfg!(target_endian = "big") { assert_eq!(<Saturating<i16>>::from_be(n), n) } else { assert_eq!(<Saturating<i16>>::from_be(n), n.swap_bytes()) }
pub const fn from_le(x: Saturating<i16>) -> Saturating<i16>
Converts an integer from little endian to the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Ai16); if cfg!(target_endian = "little") { assert_eq!(<Saturating<i16>>::from_le(n), n) } else { assert_eq!(<Saturating<i16>>::from_le(n), n.swap_bytes()) }
pub const fn to_be(self) -> Saturating<i16>
Converts self
to big endian from the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Ai16); if cfg!(target_endian = "big") { assert_eq!(n.to_be(), n) } else { assert_eq!(n.to_be(), n.swap_bytes()) }
pub const fn to_le(self) -> Saturating<i16>
Converts self
to little endian from the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Ai16); if cfg!(target_endian = "little") { assert_eq!(n.to_le(), n) } else { assert_eq!(n.to_le(), n.swap_bytes()) }
pub fn pow(self, exp: u32) -> Saturating<i16>
Raises self to the power of exp
, using exponentiation by squaring.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(3i16).pow(4), Saturating(81));
Results that are too large are saturated:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(3i8).pow(5), Saturating(127)); assert_eq!(Saturating(3i8).pow(6), Saturating(127));
impl Saturating<i32>
pub const MIN: Saturating<i32>
Returns the smallest value that can be represented by this integer type.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(<Saturating<i32>>::MIN, Saturating(i32::MIN));
pub const MAX: Saturating<i32>
Returns the largest value that can be represented by this integer type.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(<Saturating<i32>>::MAX, Saturating(i32::MAX));
pub const BITS: u32
Returns the size of this integer type in bits.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(<Saturating<i32>>::BITS, i32::BITS);
pub const fn count_ones(self) -> u32
Returns the number of ones in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0b01001100i32); assert_eq!(n.count_ones(), 3);
pub const fn count_zeros(self) -> u32
Returns the number of zeros in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(!0i32).count_zeros(), 0);
pub const fn trailing_zeros(self) -> u32
Returns the number of trailing zeros in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0b0101000i32); assert_eq!(n.trailing_zeros(), 3);
pub const fn rotate_left(self, n: u32) -> Saturating<i32>
Shifts the bits to the left by a specified amount, n
, saturating the truncated bits to the end of the resulting integer.
Please note this isn’t the same operation as the <<
shifting operator!
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n: Saturating<i64> = Saturating(0x0123456789ABCDEF); let m: Saturating<i64> = Saturating(-0x76543210FEDCBA99); assert_eq!(n.rotate_left(32), m);
pub const fn rotate_right(self, n: u32) -> Saturating<i32>
Shifts the bits to the right by a specified amount, n
, saturating the truncated bits to the beginning of the resulting integer.
Please note this isn’t the same operation as the >>
shifting operator!
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n: Saturating<i64> = Saturating(0x0123456789ABCDEF); let m: Saturating<i64> = Saturating(-0xFEDCBA987654322); assert_eq!(n.rotate_right(4), m);
pub const fn swap_bytes(self) -> Saturating<i32>
Reverses the byte order of the integer.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n: Saturating<i16> = Saturating(0b0000000_01010101); assert_eq!(n, Saturating(85)); let m = n.swap_bytes(); assert_eq!(m, Saturating(0b01010101_00000000)); assert_eq!(m, Saturating(21760));
pub const fn reverse_bits(self) -> Saturating<i32>
Reverses the bit pattern of the integer.
Examples
Please note that this example is shared between integer types. Which explains why i16
is used here.
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0b0000000_01010101i16); assert_eq!(n, Saturating(85)); let m = n.reverse_bits(); assert_eq!(m.0 as u16, 0b10101010_00000000); assert_eq!(m, Saturating(-22016));
pub const fn from_be(x: Saturating<i32>) -> Saturating<i32>
Converts an integer from big endian to the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Ai32); if cfg!(target_endian = "big") { assert_eq!(<Saturating<i32>>::from_be(n), n) } else { assert_eq!(<Saturating<i32>>::from_be(n), n.swap_bytes()) }
pub const fn from_le(x: Saturating<i32>) -> Saturating<i32>
Converts an integer from little endian to the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Ai32); if cfg!(target_endian = "little") { assert_eq!(<Saturating<i32>>::from_le(n), n) } else { assert_eq!(<Saturating<i32>>::from_le(n), n.swap_bytes()) }
pub const fn to_be(self) -> Saturating<i32>
Converts self
to big endian from the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Ai32); if cfg!(target_endian = "big") { assert_eq!(n.to_be(), n) } else { assert_eq!(n.to_be(), n.swap_bytes()) }
pub const fn to_le(self) -> Saturating<i32>
Converts self
to little endian from the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Ai32); if cfg!(target_endian = "little") { assert_eq!(n.to_le(), n) } else { assert_eq!(n.to_le(), n.swap_bytes()) }
pub fn pow(self, exp: u32) -> Saturating<i32>
Raises self to the power of exp
, using exponentiation by squaring.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(3i32).pow(4), Saturating(81));
Results that are too large are saturated:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(3i8).pow(5), Saturating(127)); assert_eq!(Saturating(3i8).pow(6), Saturating(127));
impl Saturating<i64>
pub const MIN: Saturating<i64>
Returns the smallest value that can be represented by this integer type.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(<Saturating<i64>>::MIN, Saturating(i64::MIN));
pub const MAX: Saturating<i64>
Returns the largest value that can be represented by this integer type.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(<Saturating<i64>>::MAX, Saturating(i64::MAX));
pub const BITS: u32
Returns the size of this integer type in bits.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(<Saturating<i64>>::BITS, i64::BITS);
pub const fn count_ones(self) -> u32
Returns the number of ones in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0b01001100i64); assert_eq!(n.count_ones(), 3);
pub const fn count_zeros(self) -> u32
Returns the number of zeros in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(!0i64).count_zeros(), 0);
pub const fn trailing_zeros(self) -> u32
Returns the number of trailing zeros in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0b0101000i64); assert_eq!(n.trailing_zeros(), 3);
pub const fn rotate_left(self, n: u32) -> Saturating<i64>
Shifts the bits to the left by a specified amount, n
, saturating the truncated bits to the end of the resulting integer.
Please note this isn’t the same operation as the <<
shifting operator!
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n: Saturating<i64> = Saturating(0x0123456789ABCDEF); let m: Saturating<i64> = Saturating(-0x76543210FEDCBA99); assert_eq!(n.rotate_left(32), m);
pub const fn rotate_right(self, n: u32) -> Saturating<i64>
Shifts the bits to the right by a specified amount, n
, saturating the truncated bits to the beginning of the resulting integer.
Please note this isn’t the same operation as the >>
shifting operator!
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n: Saturating<i64> = Saturating(0x0123456789ABCDEF); let m: Saturating<i64> = Saturating(-0xFEDCBA987654322); assert_eq!(n.rotate_right(4), m);
pub const fn swap_bytes(self) -> Saturating<i64>
Reverses the byte order of the integer.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n: Saturating<i16> = Saturating(0b0000000_01010101); assert_eq!(n, Saturating(85)); let m = n.swap_bytes(); assert_eq!(m, Saturating(0b01010101_00000000)); assert_eq!(m, Saturating(21760));
pub const fn reverse_bits(self) -> Saturating<i64>
Reverses the bit pattern of the integer.
Examples
Please note that this example is shared between integer types. Which explains why i16
is used here.
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0b0000000_01010101i16); assert_eq!(n, Saturating(85)); let m = n.reverse_bits(); assert_eq!(m.0 as u16, 0b10101010_00000000); assert_eq!(m, Saturating(-22016));
pub const fn from_be(x: Saturating<i64>) -> Saturating<i64>
Converts an integer from big endian to the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Ai64); if cfg!(target_endian = "big") { assert_eq!(<Saturating<i64>>::from_be(n), n) } else { assert_eq!(<Saturating<i64>>::from_be(n), n.swap_bytes()) }
pub const fn from_le(x: Saturating<i64>) -> Saturating<i64>
Converts an integer from little endian to the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Ai64); if cfg!(target_endian = "little") { assert_eq!(<Saturating<i64>>::from_le(n), n) } else { assert_eq!(<Saturating<i64>>::from_le(n), n.swap_bytes()) }
pub const fn to_be(self) -> Saturating<i64>
Converts self
to big endian from the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Ai64); if cfg!(target_endian = "big") { assert_eq!(n.to_be(), n) } else { assert_eq!(n.to_be(), n.swap_bytes()) }
pub const fn to_le(self) -> Saturating<i64>
Converts self
to little endian from the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Ai64); if cfg!(target_endian = "little") { assert_eq!(n.to_le(), n) } else { assert_eq!(n.to_le(), n.swap_bytes()) }
pub fn pow(self, exp: u32) -> Saturating<i64>
Raises self to the power of exp
, using exponentiation by squaring.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(3i64).pow(4), Saturating(81));
Results that are too large are saturated:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(3i8).pow(5), Saturating(127)); assert_eq!(Saturating(3i8).pow(6), Saturating(127));
impl Saturating<i128>
pub const MIN: Saturating<i128>
Returns the smallest value that can be represented by this integer type.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(<Saturating<i128>>::MIN, Saturating(i128::MIN));
pub const MAX: Saturating<i128>
Returns the largest value that can be represented by this integer type.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(<Saturating<i128>>::MAX, Saturating(i128::MAX));
pub const BITS: u32
Returns the size of this integer type in bits.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(<Saturating<i128>>::BITS, i128::BITS);
pub const fn count_ones(self) -> u32
Returns the number of ones in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0b01001100i128); assert_eq!(n.count_ones(), 3);
pub const fn count_zeros(self) -> u32
Returns the number of zeros in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(!0i128).count_zeros(), 0);
pub const fn trailing_zeros(self) -> u32
Returns the number of trailing zeros in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0b0101000i128); assert_eq!(n.trailing_zeros(), 3);
pub const fn rotate_left(self, n: u32) -> Saturating<i128>
Shifts the bits to the left by a specified amount, n
, saturating the truncated bits to the end of the resulting integer.
Please note this isn’t the same operation as the <<
shifting operator!
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n: Saturating<i64> = Saturating(0x0123456789ABCDEF); let m: Saturating<i64> = Saturating(-0x76543210FEDCBA99); assert_eq!(n.rotate_left(32), m);
pub const fn rotate_right(self, n: u32) -> Saturating<i128>
Shifts the bits to the right by a specified amount, n
, saturating the truncated bits to the beginning of the resulting integer.
Please note this isn’t the same operation as the >>
shifting operator!
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n: Saturating<i64> = Saturating(0x0123456789ABCDEF); let m: Saturating<i64> = Saturating(-0xFEDCBA987654322); assert_eq!(n.rotate_right(4), m);
pub const fn swap_bytes(self) -> Saturating<i128>
Reverses the byte order of the integer.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n: Saturating<i16> = Saturating(0b0000000_01010101); assert_eq!(n, Saturating(85)); let m = n.swap_bytes(); assert_eq!(m, Saturating(0b01010101_00000000)); assert_eq!(m, Saturating(21760));
pub const fn reverse_bits(self) -> Saturating<i128>
Reverses the bit pattern of the integer.
Examples
Please note that this example is shared between integer types. Which explains why i16
is used here.
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0b0000000_01010101i16); assert_eq!(n, Saturating(85)); let m = n.reverse_bits(); assert_eq!(m.0 as u16, 0b10101010_00000000); assert_eq!(m, Saturating(-22016));
pub const fn from_be(x: Saturating<i128>) -> Saturating<i128>
Converts an integer from big endian to the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Ai128); if cfg!(target_endian = "big") { assert_eq!(<Saturating<i128>>::from_be(n), n) } else { assert_eq!(<Saturating<i128>>::from_be(n), n.swap_bytes()) }
pub const fn from_le(x: Saturating<i128>) -> Saturating<i128>
Converts an integer from little endian to the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Ai128); if cfg!(target_endian = "little") { assert_eq!(<Saturating<i128>>::from_le(n), n) } else { assert_eq!(<Saturating<i128>>::from_le(n), n.swap_bytes()) }
pub const fn to_be(self) -> Saturating<i128>
Converts self
to big endian from the target’s endianness.
On big endian this is a no-op. On little endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Ai128); if cfg!(target_endian = "big") { assert_eq!(n.to_be(), n) } else { assert_eq!(n.to_be(), n.swap_bytes()) }
pub const fn to_le(self) -> Saturating<i128>
Converts self
to little endian from the target’s endianness.
On little endian this is a no-op. On big endian the bytes are swapped.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(0x1Ai128); if cfg!(target_endian = "little") { assert_eq!(n.to_le(), n) } else { assert_eq!(n.to_le(), n.swap_bytes()) }
pub fn pow(self, exp: u32) -> Saturating<i128>
Raises self to the power of exp
, using exponentiation by squaring.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(3i128).pow(4), Saturating(81));
Results that are too large are saturated:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(3i8).pow(5), Saturating(127)); assert_eq!(Saturating(3i8).pow(6), Saturating(127));
impl Saturating<isize>
pub const fn leading_zeros(self) -> u32
Returns the number of leading zeros in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(isize::MAX >> 2); assert_eq!(n.leading_zeros(), 3);
pub fn abs(self) -> Saturating<isize>
Saturating absolute value. Computes self.abs()
, returning MAX
if self == MIN
instead of overflowing.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(100isize).abs(), Saturating(100)); assert_eq!(Saturating(-100isize).abs(), Saturating(100)); assert_eq!(Saturating(isize::MIN).abs(), Saturating((isize::MIN + 1).abs())); assert_eq!(Saturating(isize::MIN).abs(), Saturating(isize::MIN.saturating_abs())); assert_eq!(Saturating(isize::MIN).abs(), Saturating(isize::MAX));
pub fn signum(self) -> Saturating<isize>
Returns a number representing sign of self
.
-
0
if the number is zero -
1
if the number is positive -
-1
if the number is negative
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(10isize).signum(), Saturating(1)); assert_eq!(Saturating(0isize).signum(), Saturating(0)); assert_eq!(Saturating(-10isize).signum(), Saturating(-1));
pub const fn is_positive(self) -> bool
Returns true
if self
is positive and false
if the number is zero or negative.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert!(Saturating(10isize).is_positive()); assert!(!Saturating(-10isize).is_positive());
pub const fn is_negative(self) -> bool
Returns true
if self
is negative and false
if the number is zero or positive.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert!(Saturating(-10isize).is_negative()); assert!(!Saturating(10isize).is_negative());
impl Saturating<i8>
pub const fn leading_zeros(self) -> u32
Returns the number of leading zeros in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(i8::MAX >> 2); assert_eq!(n.leading_zeros(), 3);
pub fn abs(self) -> Saturating<i8>
Saturating absolute value. Computes self.abs()
, returning MAX
if self == MIN
instead of overflowing.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(100i8).abs(), Saturating(100)); assert_eq!(Saturating(-100i8).abs(), Saturating(100)); assert_eq!(Saturating(i8::MIN).abs(), Saturating((i8::MIN + 1).abs())); assert_eq!(Saturating(i8::MIN).abs(), Saturating(i8::MIN.saturating_abs())); assert_eq!(Saturating(i8::MIN).abs(), Saturating(i8::MAX));
pub fn signum(self) -> Saturating<i8>
Returns a number representing sign of self
.
-
0
if the number is zero -
1
if the number is positive -
-1
if the number is negative
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(10i8).signum(), Saturating(1)); assert_eq!(Saturating(0i8).signum(), Saturating(0)); assert_eq!(Saturating(-10i8).signum(), Saturating(-1));
pub const fn is_positive(self) -> bool
Returns true
if self
is positive and false
if the number is zero or negative.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert!(Saturating(10i8).is_positive()); assert!(!Saturating(-10i8).is_positive());
pub const fn is_negative(self) -> bool
Returns true
if self
is negative and false
if the number is zero or positive.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert!(Saturating(-10i8).is_negative()); assert!(!Saturating(10i8).is_negative());
impl Saturating<i16>
pub const fn leading_zeros(self) -> u32
Returns the number of leading zeros in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(i16::MAX >> 2); assert_eq!(n.leading_zeros(), 3);
pub fn abs(self) -> Saturating<i16>
Saturating absolute value. Computes self.abs()
, returning MAX
if self == MIN
instead of overflowing.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(100i16).abs(), Saturating(100)); assert_eq!(Saturating(-100i16).abs(), Saturating(100)); assert_eq!(Saturating(i16::MIN).abs(), Saturating((i16::MIN + 1).abs())); assert_eq!(Saturating(i16::MIN).abs(), Saturating(i16::MIN.saturating_abs())); assert_eq!(Saturating(i16::MIN).abs(), Saturating(i16::MAX));
pub fn signum(self) -> Saturating<i16>
Returns a number representing sign of self
.
-
0
if the number is zero -
1
if the number is positive -
-1
if the number is negative
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(10i16).signum(), Saturating(1)); assert_eq!(Saturating(0i16).signum(), Saturating(0)); assert_eq!(Saturating(-10i16).signum(), Saturating(-1));
pub const fn is_positive(self) -> bool
Returns true
if self
is positive and false
if the number is zero or negative.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert!(Saturating(10i16).is_positive()); assert!(!Saturating(-10i16).is_positive());
pub const fn is_negative(self) -> bool
Returns true
if self
is negative and false
if the number is zero or positive.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert!(Saturating(-10i16).is_negative()); assert!(!Saturating(10i16).is_negative());
impl Saturating<i32>
pub const fn leading_zeros(self) -> u32
Returns the number of leading zeros in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(i32::MAX >> 2); assert_eq!(n.leading_zeros(), 3);
pub fn abs(self) -> Saturating<i32>
Saturating absolute value. Computes self.abs()
, returning MAX
if self == MIN
instead of overflowing.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(100i32).abs(), Saturating(100)); assert_eq!(Saturating(-100i32).abs(), Saturating(100)); assert_eq!(Saturating(i32::MIN).abs(), Saturating((i32::MIN + 1).abs())); assert_eq!(Saturating(i32::MIN).abs(), Saturating(i32::MIN.saturating_abs())); assert_eq!(Saturating(i32::MIN).abs(), Saturating(i32::MAX));
pub fn signum(self) -> Saturating<i32>
Returns a number representing sign of self
.
-
0
if the number is zero -
1
if the number is positive -
-1
if the number is negative
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(10i32).signum(), Saturating(1)); assert_eq!(Saturating(0i32).signum(), Saturating(0)); assert_eq!(Saturating(-10i32).signum(), Saturating(-1));
pub const fn is_positive(self) -> bool
Returns true
if self
is positive and false
if the number is zero or negative.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert!(Saturating(10i32).is_positive()); assert!(!Saturating(-10i32).is_positive());
pub const fn is_negative(self) -> bool
Returns true
if self
is negative and false
if the number is zero or positive.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert!(Saturating(-10i32).is_negative()); assert!(!Saturating(10i32).is_negative());
impl Saturating<i64>
pub const fn leading_zeros(self) -> u32
Returns the number of leading zeros in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(i64::MAX >> 2); assert_eq!(n.leading_zeros(), 3);
pub fn abs(self) -> Saturating<i64>
Saturating absolute value. Computes self.abs()
, returning MAX
if self == MIN
instead of overflowing.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(100i64).abs(), Saturating(100)); assert_eq!(Saturating(-100i64).abs(), Saturating(100)); assert_eq!(Saturating(i64::MIN).abs(), Saturating((i64::MIN + 1).abs())); assert_eq!(Saturating(i64::MIN).abs(), Saturating(i64::MIN.saturating_abs())); assert_eq!(Saturating(i64::MIN).abs(), Saturating(i64::MAX));
pub fn signum(self) -> Saturating<i64>
Returns a number representing sign of self
.
-
0
if the number is zero -
1
if the number is positive -
-1
if the number is negative
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(10i64).signum(), Saturating(1)); assert_eq!(Saturating(0i64).signum(), Saturating(0)); assert_eq!(Saturating(-10i64).signum(), Saturating(-1));
pub const fn is_positive(self) -> bool
Returns true
if self
is positive and false
if the number is zero or negative.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert!(Saturating(10i64).is_positive()); assert!(!Saturating(-10i64).is_positive());
pub const fn is_negative(self) -> bool
Returns true
if self
is negative and false
if the number is zero or positive.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert!(Saturating(-10i64).is_negative()); assert!(!Saturating(10i64).is_negative());
impl Saturating<i128>
pub const fn leading_zeros(self) -> u32
Returns the number of leading zeros in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(i128::MAX >> 2); assert_eq!(n.leading_zeros(), 3);
pub fn abs(self) -> Saturating<i128>
Saturating absolute value. Computes self.abs()
, returning MAX
if self == MIN
instead of overflowing.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(100i128).abs(), Saturating(100)); assert_eq!(Saturating(-100i128).abs(), Saturating(100)); assert_eq!(Saturating(i128::MIN).abs(), Saturating((i128::MIN + 1).abs())); assert_eq!(Saturating(i128::MIN).abs(), Saturating(i128::MIN.saturating_abs())); assert_eq!(Saturating(i128::MIN).abs(), Saturating(i128::MAX));
pub fn signum(self) -> Saturating<i128>
Returns a number representing sign of self
.
-
0
if the number is zero -
1
if the number is positive -
-1
if the number is negative
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert_eq!(Saturating(10i128).signum(), Saturating(1)); assert_eq!(Saturating(0i128).signum(), Saturating(0)); assert_eq!(Saturating(-10i128).signum(), Saturating(-1));
pub const fn is_positive(self) -> bool
Returns true
if self
is positive and false
if the number is zero or negative.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert!(Saturating(10i128).is_positive()); assert!(!Saturating(-10i128).is_positive());
pub const fn is_negative(self) -> bool
Returns true
if self
is negative and false
if the number is zero or positive.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert!(Saturating(-10i128).is_negative()); assert!(!Saturating(10i128).is_negative());
impl Saturating<usize>
pub const fn leading_zeros(self) -> u32
Returns the number of leading zeros in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(usize::MAX >> 2); assert_eq!(n.leading_zeros(), 2);
pub fn is_power_of_two(self) -> bool
Returns true
if and only if self == 2^k
for some k
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert!(Saturating(16usize).is_power_of_two()); assert!(!Saturating(10usize).is_power_of_two());
impl Saturating<u8>
pub const fn leading_zeros(self) -> u32
Returns the number of leading zeros in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(u8::MAX >> 2); assert_eq!(n.leading_zeros(), 2);
pub fn is_power_of_two(self) -> bool
Returns true
if and only if self == 2^k
for some k
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert!(Saturating(16u8).is_power_of_two()); assert!(!Saturating(10u8).is_power_of_two());
impl Saturating<u16>
pub const fn leading_zeros(self) -> u32
Returns the number of leading zeros in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(u16::MAX >> 2); assert_eq!(n.leading_zeros(), 2);
pub fn is_power_of_two(self) -> bool
Returns true
if and only if self == 2^k
for some k
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert!(Saturating(16u16).is_power_of_two()); assert!(!Saturating(10u16).is_power_of_two());
impl Saturating<u32>
pub const fn leading_zeros(self) -> u32
Returns the number of leading zeros in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(u32::MAX >> 2); assert_eq!(n.leading_zeros(), 2);
pub fn is_power_of_two(self) -> bool
Returns true
if and only if self == 2^k
for some k
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert!(Saturating(16u32).is_power_of_two()); assert!(!Saturating(10u32).is_power_of_two());
impl Saturating<u64>
pub const fn leading_zeros(self) -> u32
Returns the number of leading zeros in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(u64::MAX >> 2); assert_eq!(n.leading_zeros(), 2);
pub fn is_power_of_two(self) -> bool
Returns true
if and only if self == 2^k
for some k
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert!(Saturating(16u64).is_power_of_two()); assert!(!Saturating(10u64).is_power_of_two());
impl Saturating<u128>
pub const fn leading_zeros(self) -> u32
Returns the number of leading zeros in the binary representation of self
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; let n = Saturating(u128::MAX >> 2); assert_eq!(n.leading_zeros(), 2);
pub fn is_power_of_two(self) -> bool
Returns true
if and only if self == 2^k
for some k
.
Examples
Basic usage:
#![feature(saturating_int_impl)] use std::num::Saturating; assert!(Saturating(16u128).is_power_of_two()); assert!(!Saturating(10u128).is_power_of_two());
Trait Implementations
impl<'_, '_> Add<&'_ Saturating<i128>> for &'_ Saturating<i128>
type Output = <Saturating<i128> as Add<Saturating<i128>>>::Output
The resulting type after applying the +
operator.
pub fn add(
self,
other: &Saturating<i128>
) -> <Saturating<i128> as Add<Saturating<i128>>>::Output
Performs the +
operation. Read more
impl<'_> Add<&'_ Saturating<i128>> for Saturating<i128>
type Output = <Saturating<i128> as Add<Saturating<i128>>>::Output
The resulting type after applying the +
operator.
pub fn add(
self,
other: &Saturating<i128>
) -> <Saturating<i128> as Add<Saturating<i128>>>::Output
Performs the +
operation. Read more
impl<'_, '_> Add<&'_ Saturating<i16>> for &'_ Saturating<i16>
type Output = <Saturating<i16> as Add<Saturating<i16>>>::Output
The resulting type after applying the +
operator.
pub fn add(
self,
other: &Saturating<i16>
) -> <Saturating<i16> as Add<Saturating<i16>>>::Output
Performs the +
operation. Read more
impl<'_> Add<&'_ Saturating<i16>> for Saturating<i16>
type Output = <Saturating<i16> as Add<Saturating<i16>>>::Output
The resulting type after applying the +
operator.
pub fn add(
self,
other: &Saturating<i16>
) -> <Saturating<i16> as Add<Saturating<i16>>>::Output
Performs the +
operation. Read more
impl<'_, '_> Add<&'_ Saturating<i32>> for &'_ Saturating<i32>
type Output = <Saturating<i32> as Add<Saturating<i32>>>::Output
The resulting type after applying the +
operator.
pub fn add(
self,
other: &Saturating<i32>
) -> <Saturating<i32> as Add<Saturating<i32>>>::Output
Performs the +
operation. Read more
impl<'_> Add<&'_ Saturating<i32>> for Saturating<i32>
type Output = <Saturating<i32> as Add<Saturating<i32>>>::Output
The resulting type after applying the +
operator.
pub fn add(
self,
other: &Saturating<i32>
) -> <Saturating<i32> as Add<Saturating<i32>>>::Output
Performs the +
operation. Read more
impl<'_, '_> Add<&'_ Saturating<i64>> for &'_ Saturating<i64>
type Output = <Saturating<i64> as Add<Saturating<i64>>>::Output
The resulting type after applying the +
operator.
pub fn add(
self,
other: &Saturating<i64>
) -> <Saturating<i64> as Add<Saturating<i64>>>::Output
Performs the +
operation. Read more
impl<'_> Add<&'_ Saturating<i64>> for Saturating<i64>
type Output = <Saturating<i64> as Add<Saturating<i64>>>::Output
The resulting type after applying the +
operator.
pub fn add(
self,
other: &Saturating<i64>
) -> <Saturating<i64> as Add<Saturating<i64>>>::Output
Performs the +
operation. Read more
impl<'_, '_> Add<&'_ Saturating<i8>> for &'_ Saturating<i8>
type Output = <Saturating<i8> as Add<Saturating<i8>>>::Output
The resulting type after applying the +
operator.
pub fn add(
self,
other: &Saturating<i8>
) -> <Saturating<i8> as Add<Saturating<i8>>>::Output
Performs the +
operation. Read more
impl<'_> Add<&'_ Saturating<i8>> for Saturating<i8>
type Output = <Saturating<i8> as Add<Saturating<i8>>>::Output
The resulting type after applying the +
operator.
pub fn add(
self,
other: &Saturating<i8>
) -> <Saturating<i8> as Add<Saturating<i8>>>::Output
Performs the +
operation. Read more
impl<'_> Add<&'_ Saturating<isize>> for Saturating<isize>
type Output = <Saturating<isize> as Add<Saturating<isize>>>::Output
The resulting type after applying the +
operator.
pub fn add(
self,
other: &Saturating<isize>
) -> <Saturating<isize> as Add<Saturating<isize>>>::Output
Performs the +
operation. Read more
impl<'_, '_> Add<&'_ Saturating<isize>> for &'_ Saturating<isize>
type Output = <Saturating<isize> as Add<Saturating<isize>>>::Output
The resulting type after applying the +
operator.
pub fn add(
self,
other: &Saturating<isize>
) -> <Saturating<isize> as Add<Saturating<isize>>>::Output
Performs the +
operation. Read more
impl<'_, '_> Add<&'_ Saturating<u128>> for &'_ Saturating<u128>
type Output = <Saturating<u128> as Add<Saturating<u128>>>::Output
The resulting type after applying the +
operator.
pub fn add(
self,
other: &Saturating<u128>
) -> <Saturating<u128> as Add<Saturating<u128>>>::Output
Performs the +
operation. Read more
impl<'_> Add<&'_ Saturating<u128>> for Saturating<u128>
type Output = <Saturating<u128> as Add<Saturating<u128>>>::Output
The resulting type after applying the +
operator.
pub fn add(
self,
other: &Saturating<u128>
) -> <Saturating<u128> as Add<Saturating<u128>>>::Output
Performs the +
operation. Read more
impl<'_> Add<&'_ Saturating<u16>> for Saturating<u16>
type Output = <Saturating<u16> as Add<Saturating<u16>>>::Output
The resulting type after applying the +
operator.
pub fn add(
self,
other: &Saturating<u16>
) -> <Saturating<u16> as Add<Saturating<u16>>>::Output
Performs the +
operation. Read more
impl<'_, '_> Add<&'_ Saturating<u16>> for &'_ Saturating<u16>
type Output = <Saturating<u16> as Add<Saturating<u16>>>::Output
The resulting type after applying the +
operator.
pub fn add(
self,
other: &Saturating<u16>
) -> <Saturating<u16> as Add<Saturating<u16>>>::Output
Performs the +
operation. Read more
impl<'_> Add<&'_ Saturating<u32>> for Saturating<u32>
type Output = <Saturating<u32> as Add<Saturating<u32>>>::Output
The resulting type after applying the +
operator.
pub fn add(
self,
other: &Saturating<u32>
) -> <Saturating<u32> as Add<Saturating<u32>>>::Output
Performs the +
operation. Read more
impl<'_, '_> Add<&'_ Saturating<u32>> for &'_ Saturating<u32>
type Output = <Saturating<u32> as Add<Saturating<u32>>>::Output
The resulting type after applying the +
operator.
pub fn add(
self,
other: &Saturating<u32>
) -> <Saturating<u32> as Add<Saturating<u32>>>::Output
Performs the +
operation. Read more
impl<'_> Add<&'_ Saturating<u64>> for Saturating<u64>
type Output = <Saturating<u64> as Add<Saturating<u64>>>::Output
The resulting type after applying the +
operator.
pub fn add(
self,
other: &Saturating<u64>
) -> <Saturating<u64> as Add<Saturating<u64>>>::Output
Performs the +
operation. Read more
impl<'_, '_> Add<&'_ Saturating<u64>> for &'_ Saturating<u64>
type Output = <Saturating<u64> as Add<Saturating<u64>>>::Output
The resulting type after applying the +
operator.
pub fn add(
self,
other: &Saturating<u64>
) -> <Saturating<u64> as Add<Saturating<u64>>>::Output
Performs the +
operation. Read more
impl<'_> Add<&'_ Saturating<u8>> for Saturating<u8>
type Output = <Saturating<u8> as Add<Saturating<u8>>>::Output
The resulting type after applying the +
operator.
pub fn add(
self,
other: &Saturating<u8>
) -> <Saturating<u8> as Add<Saturating<u8>>>::Output
Performs the +
operation. Read more
impl<'_, '_> Add<&'_ Saturating<u8>> for &'_ Saturating<u8>
type Output = <Saturating<u8> as Add<Saturating<u8>>>::Output
The resulting type after applying the +
operator.
pub fn add(
self,
other: &Saturating<u8>
) -> <Saturating<u8> as Add<Saturating<u8>>>::Output
Performs the +
operation. Read more
impl<'_> Add<&'_ Saturating<usize>> for Saturating<usize>
type Output = <Saturating<usize> as Add<Saturating<usize>>>::Output
The resulting type after applying the +
operator.
pub fn add(
self,
other: &Saturating<usize>
) -> <Saturating<usize> as Add<Saturating<usize>>>::Output
Performs the +
operation. Read more
impl<'_, '_> Add<&'_ Saturating<usize>> for &'_ Saturating<usize>
type Output = <Saturating<usize> as Add<Saturating<usize>>>::Output
The resulting type after applying the +
operator.
pub fn add(
self,
other: &Saturating<usize>
) -> <Saturating<usize> as Add<Saturating<usize>>>::Output
Performs the +
operation. Read more
impl<'a> Add<Saturating<i128>> for &'a Saturating<i128>
type Output = <Saturating<i128> as Add<Saturating<i128>>>::Output
The resulting type after applying the +
operator.
pub fn add(
self,
other: Saturating<i128>
) -> <Saturating<i128> as Add<Saturating<i128>>>::Output
Performs the +
operation. Read more
impl Add<Saturating<i128>> for Saturating<i128>
type Output = Saturating<i128>
The resulting type after applying the +
operator.
pub fn add(self, other: Saturating<i128>) -> Saturating<i128>
Performs the +
operation. Read more
impl Add<Saturating<i16>> for Saturating<i16>
type Output = Saturating<i16>
The resulting type after applying the +
operator.
pub fn add(self, other: Saturating<i16>) -> Saturating<i16>
Performs the +
operation. Read more
impl<'a> Add<Saturating<i16>> for &'a Saturating<i16>
type Output = <Saturating<i16> as Add<Saturating<i16>>>::Output
The resulting type after applying the +
operator.
pub fn add(
self,
other: Saturating<i16>
) -> <Saturating<i16> as Add<Saturating<i16>>>::Output
Performs the +
operation. Read more
impl Add<Saturating<i32>> for Saturating<i32>
type Output = Saturating<i32>
The resulting type after applying the +
operator.
pub fn add(self, other: Saturating<i32>) -> Saturating<i32>
Performs the +
operation. Read more
impl<'a> Add<Saturating<i32>> for &'a Saturating<i32>
type Output = <Saturating<i32> as Add<Saturating<i32>>>::Output
The resulting type after applying the +
operator.
pub fn add(
self,
other: Saturating<i32>
) -> <Saturating<i32> as Add<Saturating<i32>>>::Output
Performs the +
operation. Read more
impl<'a> Add<Saturating<i64>> for &'a Saturating<i64>
type Output = <Saturating<i64> as Add<Saturating<i64>>>::Output
The resulting type after applying the +
operator.
pub fn add(
self,
other: Saturating<i64>
) -> <Saturating<i64> as Add<Saturating<i64>>>::Output
Performs the +
operation. Read more
impl Add<Saturating<i64>> for Saturating<i64>
type Output = Saturating<i64>
The resulting type after applying the +
operator.
pub fn add(self, other: Saturating<i64>) -> Saturating<i64>
Performs the +
operation. Read more
impl<'a> Add<Saturating<i8>> for &'a Saturating<i8>
type Output = <Saturating<i8> as Add<Saturating<i8>>>::Output
The resulting type after applying the +
operator.
pub fn add(
self,
other: Saturating<i8>
) -> <Saturating<i8> as Add<Saturating<i8>>>::Output
Performs the +
operation. Read more
impl Add<Saturating<i8>> for Saturating<i8>
type Output = Saturating<i8>
The resulting type after applying the +
operator.
pub fn add(self, other: Saturating<i8>) -> Saturating<i8>
Performs the +
operation. Read more
impl<'a> Add<Saturating<isize>> for &'a Saturating<isize>
type Output = <Saturating<isize> as Add<Saturating<isize>>>::Output
The resulting type after applying the +
operator.
pub fn add(
self,
other: Saturating<isize>
) -> <Saturating<isize> as Add<Saturating<isize>>>::Output
Performs the +
operation. Read more
impl Add<Saturating<isize>> for Saturating<isize>
type Output = Saturating<isize>
The resulting type after applying the +
operator.
pub fn add(self, other: Saturating<isize>) -> Saturating<isize>
Performs the +
operation. Read more
impl Add<Saturating<u128>> for Saturating<u128>
type Output = Saturating<u128>
The resulting type after applying the +
operator.
pub fn add(self, other: Saturating<u128>) -> Saturating<u128>
Performs the +
operation. Read more
impl<'a> Add<Saturating<u128>> for &'a Saturating<u128>
type Output = <Saturating<u128> as Add<Saturating<u128>>>::Output
The resulting type after applying the +
operator.
pub fn add(
self,
other: Saturating<u128>
) -> <Saturating<u128> as Add<Saturating<u128>>>::Output
Performs the +
operation. Read more
impl Add<Saturating<u16>> for Saturating<u16>
type Output = Saturating<u16>
The resulting type after applying the +
operator.
pub fn add(self, other: Saturating<u16>) -> Saturating<u16>
Performs the +
operation. Read more
impl<'a> Add<Saturating<u16>> for &'a Saturating<u16>
type Output = <Saturating<u16> as Add<Saturating<u16>>>::Output
The resulting type after applying the +
operator.
pub fn add(
self,
other: Saturating<u16>
) -> <Saturating<u16> as Add<Saturating<u16>>>::Output
Performs the +
operation. Read more
impl<'a> Add<Saturating<u32>> for &'a Saturating<u32>
type Output = <Saturating<u32> as Add<Saturating<u32>>>::Output
The resulting type after applying the +
operator.
pub fn add(
self,
other: Saturating<u32>
) -> <Saturating<u32> as Add<Saturating<u32>>>::Output
Performs the +
operation. Read more
impl Add<Saturating<u32>> for Saturating<u32>
type Output = Saturating<u32>
The resulting type after applying the +
operator.
pub fn add(self, other: Saturating<u32>) -> Saturating<u32>
Performs the +
operation. Read more
impl Add<Saturating<u64>> for Saturating<u64>
type Output = Saturating<u64>
The resulting type after applying the +
operator.
pub fn add(self, other: Saturating<u64>) -> Saturating<u64>
Performs the +
operation. Read more
impl<'a> Add<Saturating<u64>> for &'a Saturating<u64>
type Output = <Saturating<u64> as Add<Saturating<u64>>>::Output
The resulting type after applying the +
operator.
pub fn add(
self,
other: Saturating<u64>
) -> <Saturating<u64> as Add<Saturating<u64>>>::Output
Performs the +
operation. Read more
impl Add<Saturating<u8>> for Saturating<u8>
type Output = Saturating<u8>
The resulting type after applying the +
operator.
pub fn add(self, other: Saturating<u8>) -> Saturating<u8>
Performs the +
operation. Read more
impl<'a> Add<Saturating<u8>> for &'a Saturating<u8>
type Output = <Saturating<u8> as Add<Saturating<u8>>>::Output
The resulting type after applying the +
operator.
pub fn add(
self,
other: Saturating<u8>
) -> <Saturating<u8> as Add<Saturating<u8>>>::Output
Performs the +
operation. Read more
impl<'a> Add<Saturating<usize>> for &'a Saturating<usize>
type Output = <Saturating<usize> as Add<Saturating<usize>>>::Output
The resulting type after applying the +
operator.
pub fn add(
self,
other: Saturating<usize>
) -> <Saturating<usize> as Add<Saturating<usize>>>::Output
Performs the +
operation. Read more
impl Add<Saturating<usize>> for Saturating<usize>
type Output = Saturating<usize>
The resulting type after applying the +
operator.
pub fn add(self, other: Saturating<usize>) -> Saturating<usize>
Performs the +
operation. Read more
impl<'_> AddAssign<&'_ Saturating<i128>> for Saturating<i128>
impl<'_> AddAssign<&'_ Saturating<i16>> for Saturating<i16>
impl<'_> AddAssign<&'_ Saturating<i32>> for Saturating<i32>
impl<'_> AddAssign<&'_ Saturating<i64>> for Saturating<i64>
impl<'_> AddAssign<&'_ Saturating<i8>> for Saturating<i8>
impl<'_> AddAssign<&'_ Saturating<isize>> for Saturating<isize>
impl<'_> AddAssign<&'_ Saturating<u128>> for Saturating<u128>
impl<'_> AddAssign<&'_ Saturating<u16>> for Saturating<u16>
impl<'_> AddAssign<&'_ Saturating<u32>> for Saturating<u32>
impl<'_> AddAssign<&'_ Saturating<u64>> for Saturating<u64>
impl<'_> AddAssign<&'_ Saturating<u8>> for Saturating<u8>
impl<'_> AddAssign<&'_ Saturating<usize>> for Saturating<usize>
impl AddAssign<Saturating<i128>> for Saturating<i128>
impl AddAssign<Saturating<i16>> for Saturating<i16>
impl AddAssign<Saturating<i32>> for Saturating<i32>
impl AddAssign<Saturating<i64>> for Saturating<i64>
impl AddAssign<Saturating<i8>> for Saturating<i8>
impl AddAssign<Saturating<isize>> for Saturating<isize>
impl AddAssign<Saturating<u128>> for Saturating<u128>
impl AddAssign<Saturating<u16>> for Saturating<u16>
impl AddAssign<Saturating<u32>> for Saturating<u32>
impl AddAssign<Saturating<u64>> for Saturating<u64>
impl AddAssign<Saturating<u8>> for Saturating<u8>
impl AddAssign<Saturating<usize>> for Saturating<usize>
pub fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
Formats the value using the given formatter.
impl<'_, '_> BitAnd<&'_ Saturating<i128>> for &'_ Saturating<i128>
type Output = <Saturating<i128> as BitAnd<Saturating<i128>>>::Output
The resulting type after applying the &
operator.
pub fn bitand(
self,
other: &Saturating<i128>
) -> <Saturating<i128> as BitAnd<Saturating<i128>>>::Output
Performs the &
operation. Read more
impl<'_> BitAnd<&'_ Saturating<i128>> for Saturating<i128>
type Output = <Saturating<i128> as BitAnd<Saturating<i128>>>::Output
The resulting type after applying the &
operator.
pub fn bitand(
self,
other: &Saturating<i128>
) -> <Saturating<i128> as BitAnd<Saturating<i128>>>::Output
Performs the &
operation. Read more
impl<'_> BitAnd<&'_ Saturating<i16>> for Saturating<i16>
type Output = <Saturating<i16> as BitAnd<Saturating<i16>>>::Output
The resulting type after applying the &
operator.
pub fn bitand(
self,
other: &Saturating<i16>
) -> <Saturating<i16> as BitAnd<Saturating<i16>>>::Output
Performs the &
operation. Read more
impl<'_, '_> BitAnd<&'_ Saturating<i16>> for &'_ Saturating<i16>
type Output = <Saturating<i16> as BitAnd<Saturating<i16>>>::Output
The resulting type after applying the &
operator.
pub fn bitand(
self,
other: &Saturating<i16>
) -> <Saturating<i16> as BitAnd<Saturating<i16>>>::Output
Performs the &
operation. Read more
impl<'_> BitAnd<&'_ Saturating<i32>> for Saturating<i32>
type Output = <Saturating<i32> as BitAnd<Saturating<i32>>>::Output
The resulting type after applying the &
operator.
pub fn bitand(
self,
other: &Saturating<i32>
) -> <Saturating<i32> as BitAnd<Saturating<i32>>>::Output
Performs the &
operation. Read more
impl<'_, '_> BitAnd<&'_ Saturating<i32>> for &'_ Saturating<i32>
type Output = <Saturating<i32> as BitAnd<Saturating<i32>>>::Output
The resulting type after applying the &
operator.
pub fn bitand(
self,
other: &Saturating<i32>
) -> <Saturating<i32> as BitAnd<Saturating<i32>>>::Output
Performs the &
operation. Read more
impl<'_> BitAnd<&'_ Saturating<i64>> for Saturating<i64>
type Output = <Saturating<i64> as BitAnd<Saturating<i64>>>::Output
The resulting type after applying the &
operator.
pub fn bitand(
self,
other: &Saturating<i64>
) -> <Saturating<i64> as BitAnd<Saturating<i64>>>::Output
Performs the &
operation. Read more
impl<'_, '_> BitAnd<&'_ Saturating<i64>> for &'_ Saturating<i64>
type Output = <Saturating<i64> as BitAnd<Saturating<i64>>>::Output
The resulting type after applying the &
operator.
pub fn bitand(
self,
other: &Saturating<i64>
) -> <Saturating<i64> as BitAnd<Saturating<i64>>>::Output
Performs the &
operation. Read more
impl<'_, '_> BitAnd<&'_ Saturating<i8>> for &'_ Saturating<i8>
type Output = <Saturating<i8> as BitAnd<Saturating<i8>>>::Output
The resulting type after applying the &
operator.
pub fn bitand(
self,
other: &Saturating<i8>
) -> <Saturating<i8> as BitAnd<Saturating<i8>>>::Output
Performs the &
operation. Read more
impl<'_> BitAnd<&'_ Saturating<i8>> for Saturating<i8>
type Output = <Saturating<i8> as BitAnd<Saturating<i8>>>::Output
The resulting type after applying the &
operator.
pub fn bitand(
self,
other: &Saturating<i8>
) -> <Saturating<i8> as BitAnd<Saturating<i8>>>::Output
Performs the &
operation. Read more
impl<'_> BitAnd<&'_ Saturating<isize>> for Saturating<isize>
type Output = <Saturating<isize> as BitAnd<Saturating<isize>>>::Output
The resulting type after applying the &
operator.
pub fn bitand(
self,
other: &Saturating<isize>
) -> <Saturating<isize> as BitAnd<Saturating<isize>>>::Output
Performs the &
operation. Read more
impl<'_, '_> BitAnd<&'_ Saturating<isize>> for &'_ Saturating<isize>
type Output = <Saturating<isize> as BitAnd<Saturating<isize>>>::Output
The resulting type after applying the &
operator.
pub fn bitand(
self,
other: &Saturating<isize>
) -> <Saturating<isize> as BitAnd<Saturating<isize>>>::Output
Performs the &
operation. Read more
impl<'_, '_> BitAnd<&'_ Saturating<u128>> for &'_ Saturating<u128>
type Output = <Saturating<u128> as BitAnd<Saturating<u128>>>::Output
The resulting type after applying the &
operator.
pub fn bitand(
self,
other: &Saturating<u128>
) -> <Saturating<u128> as BitAnd<Saturating<u128>>>::Output
Performs the &
operation. Read more
impl<'_> BitAnd<&'_ Saturating<u128>> for Saturating<u128>
type Output = <Saturating<u128> as BitAnd<Saturating<u128>>>::Output
The resulting type after applying the &
operator.
pub fn bitand(
self,
other: &Saturating<u128>
) -> <Saturating<u128> as BitAnd<Saturating<u128>>>::Output
Performs the &
operation. Read more
impl<'_> BitAnd<&'_ Saturating<u16>> for Saturating<u16>
type Output = <Saturating<u16> as BitAnd<Saturating<u16>>>::Output
The resulting type after applying the &
operator.
pub fn bitand(
self,
other: &Saturating<u16>
) -> <Saturating<u16> as BitAnd<Saturating<u16>>>::Output
Performs the &
operation. Read more
impl<'_, '_> BitAnd<&'_ Saturating<u16>> for &'_ Saturating<u16>
type Output = <Saturating<u16> as BitAnd<Saturating<u16>>>::Output
The resulting type after applying the &
operator.
pub fn bitand(
self,
other: &Saturating<u16>
) -> <Saturating<u16> as BitAnd<Saturating<u16>>>::Output
Performs the &
operation. Read more
impl<'_> BitAnd<&'_ Saturating<u32>> for Saturating<u32>
type Output = <Saturating<u32> as BitAnd<Saturating<u32>>>::Output
The resulting type after applying the &
operator.
pub fn bitand(
self,
other: &Saturating<u32>
) -> <Saturating<u32> as BitAnd<Saturating<u32>>>::Output
Performs the &
operation. Read more
impl<'_, '_> BitAnd<&'_ Saturating<u32>> for &'_ Saturating<u32>
type Output = <Saturating<u32> as BitAnd<Saturating<u32>>>::Output
The resulting type after applying the &
operator.
pub fn bitand(
self,
other: &Saturating<u32>
) -> <Saturating<u32> as BitAnd<Saturating<u32>>>::Output
Performs the &
operation. Read more
impl<'_, '_> BitAnd<&'_ Saturating<u64>> for &'_ Saturating<u64>
type Output = <Saturating<u64> as BitAnd<Saturating<u64>>>::Output
The resulting type after applying the &
operator.
pub fn bitand(
self,
other: &Saturating<u64>
) -> <Saturating<u64> as BitAnd<Saturating<u64>>>::Output
Performs the &
operation. Read more
impl<'_> BitAnd<&'_ Saturating<u64>> for Saturating<u64>
type Output = <Saturating<u64> as BitAnd<Saturating<u64>>>::Output
The resulting type after applying the &
operator.
pub fn bitand(
self,
other: &Saturating<u64>
) -> <Saturating<u64> as BitAnd<Saturating<u64>>>::Output
Performs the &
operation. Read more
impl<'_, '_> BitAnd<&'_ Saturating<u8>> for &'_ Saturating<u8>
type Output = <Saturating<u8> as BitAnd<Saturating<u8>>>::Output
The resulting type after applying the &
operator.
pub fn bitand(
self,
other: &Saturating<u8>
) -> <Saturating<u8> as BitAnd<Saturating<u8>>>::Output
Performs the &
operation. Read more
impl<'_> BitAnd<&'_ Saturating<u8>> for Saturating<u8>
type Output = <Saturating<u8> as BitAnd<Saturating<u8>>>::Output
The resulting type after applying the &
operator.
pub fn bitand(
self,
other: &Saturating<u8>
) -> <Saturating<u8> as BitAnd<Saturating<u8>>>::Output
Performs the &
operation. Read more
impl<'_, '_> BitAnd<&'_ Saturating<usize>> for &'_ Saturating<usize>
type Output = <Saturating<usize> as BitAnd<Saturating<usize>>>::Output
The resulting type after applying the &
operator.
pub fn bitand(
self,
other: &Saturating<usize>
) -> <Saturating<usize> as BitAnd<Saturating<usize>>>::Output
Performs the &
operation. Read more
impl<'_> BitAnd<&'_ Saturating<usize>> for Saturating<usize>
type Output = <Saturating<usize> as BitAnd<Saturating<usize>>>::Output
The resulting type after applying the &
operator.
pub fn bitand(
self,
other: &Saturating<usize>
) -> <Saturating<usize> as BitAnd<Saturating<usize>>>::Output
Performs the &
operation. Read more
impl BitAnd<Saturating<i128>> for Saturating<i128>
type Output = Saturating<i128>
The resulting type after applying the &
operator.
pub fn bitand(self, other: Saturating<i128>) -> Saturating<i128>
Performs the &
operation. Read more
impl<'a> BitAnd<Saturating<i128>> for &'a Saturating<i128>
type Output = <Saturating<i128> as BitAnd<Saturating<i128>>>::Output
The resulting type after applying the &
operator.
pub fn bitand(
self,
other: Saturating<i128>
) -> <Saturating<i128> as BitAnd<Saturating<i128>>>::Output
Performs the &
operation. Read more
impl BitAnd<Saturating<i16>> for Saturating<i16>
type Output = Saturating<i16>
The resulting type after applying the &
operator.
pub fn bitand(self, other: Saturating<i16>) -> Saturating<i16>
Performs the &
operation. Read more
impl<'a> BitAnd<Saturating<i16>> for &'a Saturating<i16>
type Output = <Saturating<i16> as BitAnd<Saturating<i16>>>::Output
The resulting type after applying the &
operator.
pub fn bitand(
self,
other: Saturating<i16>
) -> <Saturating<i16> as BitAnd<Saturating<i16>>>::Output
Performs the &
operation. Read more
impl BitAnd<Saturating<i32>> for Saturating<i32>
type Output = Saturating<i32>
The resulting type after applying the &
operator.
pub fn bitand(self, other: Saturating<i32>) -> Saturating<i32>
Performs the &
operation. Read more
impl<'a> BitAnd<Saturating<i32>> for &'a Saturating<i32>
type Output = <Saturating<i32> as BitAnd<Saturating<i32>>>::Output
The resulting type after applying the &
operator.
pub fn bitand(
self,
other: Saturating<i32>
) -> <Saturating<i32> as BitAnd<Saturating<i32>>>::Output
Performs the &
operation. Read more
impl<'a> BitAnd<Saturating<i64>> for &'a Saturating<i64>
type Output = <Saturating<i64> as BitAnd<Saturating<i64>>>::Output
The resulting type after applying the &
operator.
pub fn bitand(
self,
other: Saturating<i64>
) -> <Saturating<i64> as BitAnd<Saturating<i64>>>::Output
Performs the &
operation. Read more
impl BitAnd<Saturating<i64>> for Saturating<i64>
type Output = Saturating<i64>
The resulting type after applying the &
operator.
pub fn bitand(self, other: Saturating<i64>) -> Saturating<i64>
Performs the &
operation. Read more
impl BitAnd<Saturating<i8>> for Saturating<i8>
type Output = Saturating<i8>
The resulting type after applying the &
operator.
pub fn bitand(self, other: Saturating<i8>) -> Saturating<i8>
Performs the &
operation. Read more
impl<'a> BitAnd<Saturating<i8>> for &'a Saturating<i8>
type Output = <Saturating<i8> as BitAnd<Saturating<i8>>>::Output
The resulting type after applying the &
operator.
pub fn bitand(
self,
other: Saturating<i8>
) -> <Saturating<i8> as BitAnd<Saturating<i8>>>::Output
Performs the &
operation. Read more
impl BitAnd<Saturating<isize>> for Saturating<isize>
type Output = Saturating<isize>
The resulting type after applying the &
operator.
pub fn bitand(self, other: Saturating<isize>) -> Saturating<isize>
Performs the &
operation. Read more
impl<'a> BitAnd<Saturating<isize>> for &'a Saturating<isize>
type Output = <Saturating<isize> as BitAnd<Saturating<isize>>>::Output
The resulting type after applying the &
operator.
pub fn bitand(
self,
other: Saturating<isize>
) -> <Saturating<isize> as BitAnd<Saturating<isize>>>::Output
Performs the &
operation. Read more
impl<'a> BitAnd<Saturating<u128>> for &'a Saturating<u128>
type Output = <Saturating<u128> as BitAnd<Saturating<u128>>>::Output
The resulting type after applying the &
operator.
pub fn bitand(
self,
other: Saturating<u128>
) -> <Saturating<u128> as BitAnd<Saturating<u128>>>::Output
Performs the &
operation. Read more
impl BitAnd<Saturating<u128>> for Saturating<u128>
type Output = Saturating<u128>
The resulting type after applying the &
operator.
pub fn bitand(self, other: Saturating<u128>) -> Saturating<u128>
Performs the &
operation. Read more
impl<'a> BitAnd<Saturating<u16>> for &'a Saturating<u16>
type Output = <Saturating<u16> as BitAnd<Saturating<u16>>>::Output
The resulting type after applying the &
operator.
pub fn bitand(
self,
other: Saturating<u16>
) -> <Saturating<u16> as BitAnd<Saturating<u16>>>::Output
Performs the &
operation. Read more
impl BitAnd<Saturating<u16>> for Saturating<u16>
type Output = Saturating<u16>
The resulting type after applying the &
operator.
pub fn bitand(self, other: Saturating<u16>) -> Saturating<u16>
Performs the &
operation. Read more
impl<'a> BitAnd<Saturating<u32>> for &'a Saturating<u32>
type Output = <Saturating<u32> as BitAnd<Saturating<u32>>>::Output
The resulting type after applying the &
operator.
pub fn bitand(
self,
other: Saturating<u32>
) -> <Saturating<u32> as BitAnd<Saturating<u32>>>::Output
Performs the &
operation. Read more
impl BitAnd<Saturating<u32>> for Saturating<u32>
type Output = Saturating<u32>
The resulting type after applying the &
operator.
pub fn bitand(self, other: Saturating<u32>) -> Saturating<u32>
Performs the &
operation. Read more
impl<'a> BitAnd<Saturating<u64>> for &'a Saturating<u64>
type Output = <Saturating<u64> as BitAnd<Saturating<u64>>>::Output
The resulting type after applying the &
operator.
pub fn bitand(
self,
other: Saturating<u64>
) -> <Saturating<u64> as BitAnd<Saturating<u64>>>::Output
Performs the &
operation. Read more
impl BitAnd<Saturating<u64>> for Saturating<u64>
type Output = Saturating<u64>
The resulting type after applying the &
operator.
pub fn bitand(self, other: Saturating<u64>) -> Saturating<u64>
Performs the &
operation. Read more
impl BitAnd<Saturating<u8>> for Saturating<u8>
type Output = Saturating<u8>
The resulting type after applying the &
operator.
pub fn bitand(self, other: Saturating<u8>) -> Saturating<u8>
Performs the &
operation. Read more
impl<'a> BitAnd<Saturating<u8>> for &'a Saturating<u8>
type Output = <Saturating<u8> as BitAnd<Saturating<u8>>>::Output
The resulting type after applying the &
operator.
pub fn bitand(
self,
other: Saturating<u8>
) -> <Saturating<u8> as BitAnd<Saturating<u8>>>::Output
Performs the &
operation. Read more
impl<'a> BitAnd<Saturating<usize>> for &'a Saturating<usize>
type Output = <Saturating<usize> as BitAnd<Saturating<usize>>>::Output
The resulting type after applying the &
operator.
pub fn bitand(
self,
other: Saturating<usize>
) -> <Saturating<usize> as BitAnd<Saturating<usize>>>::Output
Performs the &
operation. Read more
impl BitAnd<Saturating<usize>> for Saturating<usize>
type Output = Saturating<usize>
The resulting type after applying the &
operator.
pub fn bitand(self, other: Saturating<usize>) -> Saturating<usize>
Performs the &
operation. Read more
impl<'_> BitAndAssign<&'_ Saturating<i128>> for Saturating<i128>
pub fn bitand_assign(&mut self, other: &Saturating<i128>)
Performs the &=
operation. Read more
impl<'_> BitAndAssign<&'_ Saturating<i16>> for Saturating<i16>
impl<'_> BitAndAssign<&'_ Saturating<i32>> for Saturating<i32>
impl<'_> BitAndAssign<&'_ Saturating<i64>> for Saturating<i64>
impl<'_> BitAndAssign<&'_ Saturating<i8>> for Saturating<i8>
impl<'_> BitAndAssign<&'_ Saturating<isize>> for Saturating<isize>
pub fn bitand_assign(&mut self, other: &Saturating<isize>)
Performs the &=
operation. Read more
impl<'_> BitAndAssign<&'_ Saturating<u128>> for Saturating<u128>
pub fn bitand_assign(&mut self, other: &Saturating<u128>)
Performs the &=
operation. Read more
impl<'_> BitAndAssign<&'_ Saturating<u16>> for Saturating<u16>
impl<'_> BitAndAssign<&'_ Saturating<u32>> for Saturating<u32>
impl<'_> BitAndAssign<&'_ Saturating<u64>> for Saturating<u64>
impl<'_> BitAndAssign<&'_ Saturating<u8>> for Saturating<u8>
impl<'_> BitAndAssign<&'_ Saturating<usize>> for Saturating<usize>
pub fn bitand_assign(&mut self, other: &Saturating<usize>)
Performs the &=
operation. Read more
impl BitAndAssign<Saturating<i128>> for Saturating<i128>
impl BitAndAssign<Saturating<i16>> for Saturating<i16>
impl BitAndAssign<Saturating<i32>> for Saturating<i32>
impl BitAndAssign<Saturating<i64>> for Saturating<i64>
impl BitAndAssign<Saturating<i8>> for Saturating<i8>
impl BitAndAssign<Saturating<isize>> for Saturating<isize>
pub fn bitand_assign(&mut self, other: Saturating<isize>)
Performs the &=
operation. Read more
impl BitAndAssign<Saturating<u128>> for Saturating<u128>
impl BitAndAssign<Saturating<u16>> for Saturating<u16>
impl BitAndAssign<Saturating<u32>> for Saturating<u32>
impl BitAndAssign<Saturating<u64>> for Saturating<u64>
impl BitAndAssign<Saturating<u8>> for Saturating<u8>
impl BitAndAssign<Saturating<usize>> for Saturating<usize>
pub fn bitand_assign(&mut self, other: Saturating<usize>)
Performs the &=
operation. Read more
impl<'_> BitOr<&'_ Saturating<i128>> for Saturating<i128>
type Output = <Saturating<i128> as BitOr<Saturating<i128>>>::Output
The resulting type after applying the |
operator.
pub fn bitor(
self,
other: &Saturating<i128>
) -> <Saturating<i128> as BitOr<Saturating<i128>>>::Output
Performs the |
operation. Read more
impl<'_, '_> BitOr<&'_ Saturating<i128>> for &'_ Saturating<i128>
type Output = <Saturating<i128> as BitOr<Saturating<i128>>>::Output
The resulting type after applying the |
operator.
pub fn bitor(
self,
other: &Saturating<i128>
) -> <Saturating<i128> as BitOr<Saturating<i128>>>::Output
Performs the |
operation. Read more
impl<'_> BitOr<&'_ Saturating<i16>> for Saturating<i16>
type Output = <Saturating<i16> as BitOr<Saturating<i16>>>::Output
The resulting type after applying the |
operator.
pub fn bitor(
self,
other: &Saturating<i16>
) -> <Saturating<i16> as BitOr<Saturating<i16>>>::Output
Performs the |
operation. Read more
impl<'_, '_> BitOr<&'_ Saturating<i16>> for &'_ Saturating<i16>
type Output = <Saturating<i16> as BitOr<Saturating<i16>>>::Output
The resulting type after applying the |
operator.
pub fn bitor(
self,
other: &Saturating<i16>
) -> <Saturating<i16> as BitOr<Saturating<i16>>>::Output
Performs the |
operation. Read more
impl<'_, '_> BitOr<&'_ Saturating<i32>> for &'_ Saturating<i32>
type Output = <Saturating<i32> as BitOr<Saturating<i32>>>::Output
The resulting type after applying the |
operator.
pub fn bitor(
self,
other: &Saturating<i32>
) -> <Saturating<i32> as BitOr<Saturating<i32>>>::Output
Performs the |
operation. Read more
impl<'_> BitOr<&'_ Saturating<i32>> for Saturating<i32>
type Output = <Saturating<i32> as BitOr<Saturating<i32>>>::Output
The resulting type after applying the |
operator.
pub fn bitor(
self,
other: &Saturating<i32>
) -> <Saturating<i32> as BitOr<Saturating<i32>>>::Output
Performs the |
operation. Read more
impl<'_, '_> BitOr<&'_ Saturating<i64>> for &'_ Saturating<i64>
type Output = <Saturating<i64> as BitOr<Saturating<i64>>>::Output
The resulting type after applying the |
operator.
pub fn bitor(
self,
other: &Saturating<i64>
) -> <Saturating<i64> as BitOr<Saturating<i64>>>::Output
Performs the |
operation. Read more
impl<'_> BitOr<&'_ Saturating<i64>> for Saturating<i64>
type Output = <Saturating<i64> as BitOr<Saturating<i64>>>::Output
The resulting type after applying the |
operator.
pub fn bitor(
self,
other: &Saturating<i64>
) -> <Saturating<i64> as BitOr<Saturating<i64>>>::Output
Performs the |
operation. Read more
impl<'_> BitOr<&'_ Saturating<i8>> for Saturating<i8>
type Output = <Saturating<i8> as BitOr<Saturating<i8>>>::Output
The resulting type after applying the |
operator.
pub fn bitor(
self,
other: &Saturating<i8>
) -> <Saturating<i8> as BitOr<Saturating<i8>>>::Output
Performs the |
operation. Read more
impl<'_, '_> BitOr<&'_ Saturating<i8>> for &'_ Saturating<i8>
type Output = <Saturating<i8> as BitOr<Saturating<i8>>>::Output
The resulting type after applying the |
operator.
pub fn bitor(
self,
other: &Saturating<i8>
) -> <Saturating<i8> as BitOr<Saturating<i8>>>::Output
Performs the |
operation. Read more
impl<'_, '_> BitOr<&'_ Saturating<isize>> for &'_ Saturating<isize>
type Output = <Saturating<isize> as BitOr<Saturating<isize>>>::Output
The resulting type after applying the |
operator.
pub fn bitor(
self,
other: &Saturating<isize>
) -> <Saturating<isize> as BitOr<Saturating<isize>>>::Output
Performs the |
operation. Read more
impl<'_> BitOr<&'_ Saturating<isize>> for Saturating<isize>
type Output = <Saturating<isize> as BitOr<Saturating<isize>>>::Output
The resulting type after applying the |
operator.
pub fn bitor(
self,
other: &Saturating<isize>
) -> <Saturating<isize> as BitOr<Saturating<isize>>>::Output
Performs the |
operation. Read more
impl<'_, '_> BitOr<&'_ Saturating<u128>> for &'_ Saturating<u128>
type Output = <Saturating<u128> as BitOr<Saturating<u128>>>::Output
The resulting type after applying the |
operator.
pub fn bitor(
self,
other: &Saturating<u128>
) -> <Saturating<u128> as BitOr<Saturating<u128>>>::Output
Performs the |
operation. Read more
impl<'_> BitOr<&'_ Saturating<u128>> for Saturating<u128>
type Output = <Saturating<u128> as BitOr<Saturating<u128>>>::Output
The resulting type after applying the |
operator.
pub fn bitor(
self,
other: &Saturating<u128>
) -> <Saturating<u128> as BitOr<Saturating<u128>>>::Output
Performs the |
operation. Read more
impl<'_, '_> BitOr<&'_ Saturating<u16>> for &'_ Saturating<u16>
type Output = <Saturating<u16> as BitOr<Saturating<u16>>>::Output
The resulting type after applying the |
operator.
pub fn bitor(
self,
other: &Saturating<u16>
) -> <Saturating<u16> as BitOr<Saturating<u16>>>::Output
Performs the |
operation. Read more
impl<'_> BitOr<&'_ Saturating<u16>> for Saturating<u16>
type Output = <Saturating<u16> as BitOr<Saturating<u16>>>::Output
The resulting type after applying the |
operator.
pub fn bitor(
self,
other: &Saturating<u16>
) -> <Saturating<u16> as BitOr<Saturating<u16>>>::Output
Performs the |
operation. Read more
impl<'_, '_> BitOr<&'_ Saturating<u32>> for &'_ Saturating<u32>
type Output = <Saturating<u32> as BitOr<Saturating<u32>>>::Output
The resulting type after applying the |
operator.
pub fn bitor(
self,
other: &Saturating<u32>
) -> <Saturating<u32> as BitOr<Saturating<u32>>>::Output
Performs the |
operation. Read more
impl<'_> BitOr<&'_ Saturating<u32>> for Saturating<u32>
type Output = <Saturating<u32> as BitOr<Saturating<u32>>>::Output
The resulting type after applying the |
operator.
pub fn bitor(
self,
other: &Saturating<u32>
) -> <Saturating<u32> as BitOr<Saturating<u32>>>::Output
Performs the |
operation. Read more
impl<'_> BitOr<&'_ Saturating<u64>> for Saturating<u64>
type Output = <Saturating<u64> as BitOr<Saturating<u64>>>::Output
The resulting type after applying the |
operator.
pub fn bitor(
self,
other: &Saturating<u64>
) -> <Saturating<u64> as BitOr<Saturating<u64>>>::Output
Performs the |
operation. Read more
impl<'_, '_> BitOr<&'_ Saturating<u64>> for &'_ Saturating<u64>
type Output = <Saturating<u64> as BitOr<Saturating<u64>>>::Output
The resulting type after applying the |
operator.
pub fn bitor(
self,
other: &Saturating<u64>
) -> <Saturating<u64> as BitOr<Saturating<u64>>>::Output
Performs the |
operation. Read more
impl<'_, '_> BitOr<&'_ Saturating<u8>> for &'_ Saturating<u8>
type Output = <Saturating<u8> as BitOr<Saturating<u8>>>::Output
The resulting type after applying the |
operator.
pub fn bitor(
self,
other: &Saturating<u8>
) -> <Saturating<u8> as BitOr<Saturating<u8>>>::Output
Performs the |
operation. Read more
impl<'_> BitOr<&'_ Saturating<u8>> for Saturating<u8>
type Output = <Saturating<u8> as BitOr<Saturating<u8>>>::Output
The resulting type after applying the |
operator.
pub fn bitor(
self,
other: &Saturating<u8>
) -> <Saturating<u8> as BitOr<Saturating<u8>>>::Output
Performs the |
operation. Read more
impl<'_> BitOr<&'_ Saturating<usize>> for Saturating<usize>
type Output = <Saturating<usize> as BitOr<Saturating<usize>>>::Output
The resulting type after applying the |
operator.
pub fn bitor(
self,
other: &Saturating<usize>
) -> <Saturating<usize> as BitOr<Saturating<usize>>>::Output
Performs the |
operation. Read more
impl<'_, '_> BitOr<&'_ Saturating<usize>> for &'_ Saturating<usize>
type Output = <Saturating<usize> as BitOr<Saturating<usize>>>::Output
The resulting type after applying the |
operator.
pub fn bitor(
self,
other: &Saturating<usize>
) -> <Saturating<usize> as BitOr<Saturating<usize>>>::Output
Performs the |
operation. Read more
impl<'a> BitOr<Saturating<i128>> for &'a Saturating<i128>
type Output = <Saturating<i128> as BitOr<Saturating<i128>>>::Output
The resulting type after applying the |
operator.
pub fn bitor(
self,
other: Saturating<i128>
) -> <Saturating<i128> as BitOr<Saturating<i128>>>::Output
Performs the |
operation. Read more
impl BitOr<Saturating<i128>> for Saturating<i128>
type Output = Saturating<i128>
The resulting type after applying the |
operator.
pub fn bitor(self, other: Saturating<i128>) -> Saturating<i128>
Performs the |
operation. Read more
impl BitOr<Saturating<i16>> for Saturating<i16>
type Output = Saturating<i16>
The resulting type after applying the |
operator.
pub fn bitor(self, other: Saturating<i16>) -> Saturating<i16>
Performs the |
operation. Read more
impl<'a> BitOr<Saturating<i16>> for &'a Saturating<i16>
type Output = <Saturating<i16> as BitOr<Saturating<i16>>>::Output
The resulting type after applying the |
operator.
pub fn bitor(
self,
other: Saturating<i16>
) -> <Saturating<i16> as BitOr<Saturating<i16>>>::Output
Performs the |
operation. Read more
impl<'a> BitOr<Saturating<i32>> for &'a Saturating<i32>
type Output = <Saturating<i32> as BitOr<Saturating<i32>>>::Output
The resulting type after applying the |
operator.
pub fn bitor(
self,
other: Saturating<i32>
) -> <Saturating<i32> as BitOr<Saturating<i32>>>::Output
Performs the |
operation. Read more
impl BitOr<Saturating<i32>> for Saturating<i32>
type Output = Saturating<i32>
The resulting type after applying the |
operator.
pub fn bitor(self, other: Saturating<i32>) -> Saturating<i32>
Performs the |
operation. Read more
impl<'a> BitOr<Saturating<i64>> for &'a Saturating<i64>
type Output = <Saturating<i64> as BitOr<Saturating<i64>>>::Output
The resulting type after applying the |
operator.
pub fn bitor(
self,
other: Saturating<i64>
) -> <Saturating<i64> as BitOr<Saturating<i64>>>::Output
Performs the |
operation. Read more
impl BitOr<Saturating<i64>> for Saturating<i64>
type Output = Saturating<i64>
The resulting type after applying the |
operator.
pub fn bitor(self, other: Saturating<i64>) -> Saturating<i64>
Performs the |
operation. Read more
impl BitOr<Saturating<i8>> for Saturating<i8>
type Output = Saturating<i8>
The resulting type after applying the |
operator.
pub fn bitor(self, other: Saturating<i8>) -> Saturating<i8>
Performs the |
operation. Read more
impl<'a> BitOr<Saturating<i8>> for &'a Saturating<i8>
type Output = <Saturating<i8> as BitOr<Saturating<i8>>>::Output
The resulting type after applying the |
operator.
pub fn bitor(
self,
other: Saturating<i8>
) -> <Saturating<i8> as BitOr<Saturating<i8>>>::Output
Performs the |
operation. Read more
impl<'a> BitOr<Saturating<isize>> for &'a Saturating<isize>
type Output = <Saturating<isize> as BitOr<Saturating<isize>>>::Output
The resulting type after applying the |
operator.
pub fn bitor(
self,
other: Saturating<isize>
) -> <Saturating<isize> as BitOr<Saturating<isize>>>::Output
Performs the |
operation. Read more
impl BitOr<Saturating<isize>> for Saturating<isize>
type Output = Saturating<isize>
The resulting type after applying the |
operator.
pub fn bitor(self, other: Saturating<isize>) -> Saturating<isize>
Performs the |
operation. Read more
impl BitOr<Saturating<u128>> for Saturating<u128>
type Output = Saturating<u128>
The resulting type after applying the |
operator.
pub fn bitor(self, other: Saturating<u128>) -> Saturating<u128>
Performs the |
operation. Read more
impl<'a> BitOr<Saturating<u128>> for &'a Saturating<u128>
type Output = <Saturating<u128> as BitOr<Saturating<u128>>>::Output
The resulting type after applying the |
operator.
pub fn bitor(
self,
other: Saturating<u128>
) -> <Saturating<u128> as BitOr<Saturating<u128>>>::Output
Performs the |
operation. Read more
impl<'a> BitOr<Saturating<u16>> for &'a Saturating<u16>
type Output = <Saturating<u16> as BitOr<Saturating<u16>>>::Output
The resulting type after applying the |
operator.
pub fn bitor(
self,
other: Saturating<u16>
) -> <Saturating<u16> as BitOr<Saturating<u16>>>::Output
Performs the |
operation. Read more
impl BitOr<Saturating<u16>> for Saturating<u16>
type Output = Saturating<u16>
The resulting type after applying the |
operator.
pub fn bitor(self, other: Saturating<u16>) -> Saturating<u16>
Performs the |
operation. Read more
impl BitOr<Saturating<u32>> for Saturating<u32>
type Output = Saturating<u32>
The resulting type after applying the |
operator.
pub fn bitor(self, other: Saturating<u32>) -> Saturating<u32>
Performs the |
operation. Read more
impl<'a> BitOr<Saturating<u32>> for &'a Saturating<u32>
type Output = <Saturating<u32> as BitOr<Saturating<u32>>>::Output
The resulting type after applying the |
operator.
pub fn bitor(
self,
other: Saturating<u32>
) -> <Saturating<u32> as BitOr<Saturating<u32>>>::Output
Performs the |
operation. Read more
impl BitOr<Saturating<u64>> for Saturating<u64>
type Output = Saturating<u64>
The resulting type after applying the |
operator.
pub fn bitor(self, other: Saturating<u64>) -> Saturating<u64>
Performs the |
operation. Read more
impl<'a> BitOr<Saturating<u64>> for &'a Saturating<u64>
type Output = <Saturating<u64> as BitOr<Saturating<u64>>>::Output
The resulting type after applying the |
operator.
pub fn bitor(
self,
other: Saturating<u64>
) -> <Saturating<u64> as BitOr<Saturating<u64>>>::Output
Performs the |
operation. Read more
impl<'a> BitOr<Saturating<u8>> for &'a Saturating<u8>
type Output = <Saturating<u8> as BitOr<Saturating<u8>>>::Output
The resulting type after applying the |
operator.
pub fn bitor(
self,
other: Saturating<u8>
) -> <Saturating<u8> as BitOr<Saturating<u8>>>::Output
Performs the |
operation. Read more
impl BitOr<Saturating<u8>> for Saturating<u8>
type Output = Saturating<u8>
The resulting type after applying the |
operator.
pub fn bitor(self, other: Saturating<u8>) -> Saturating<u8>
Performs the |
operation. Read more
impl<'a> BitOr<Saturating<usize>> for &'a Saturating<usize>
type Output = <Saturating<usize> as BitOr<Saturating<usize>>>::Output
The resulting type after applying the |
operator.
pub fn bitor(
self,
other: Saturating<usize>
) -> <Saturating<usize> as BitOr<Saturating<usize>>>::Output
Performs the |
operation. Read more
impl BitOr<Saturating<usize>> for Saturating<usize>
type Output = Saturating<usize>
The resulting type after applying the |
operator.
pub fn bitor(self, other: Saturating<usize>) -> Saturating<usize>
Performs the |
operation. Read more
impl<'_> BitOrAssign<&'_ Saturating<i128>> for Saturating<i128>
impl<'_> BitOrAssign<&'_ Saturating<i16>> for Saturating<i16>
impl<'_> BitOrAssign<&'_ Saturating<i32>> for Saturating<i32>
impl<'_> BitOrAssign<&'_ Saturating<i64>> for Saturating<i64>
impl<'_> BitOrAssign<&'_ Saturating<i8>> for Saturating<i8>
impl<'_> BitOrAssign<&'_ Saturating<isize>> for Saturating<isize>
pub fn bitor_assign(&mut self, other: &Saturating<isize>)
Performs the |=
operation. Read more
impl<'_> BitOrAssign<&'_ Saturating<u128>> for Saturating<u128>
impl<'_> BitOrAssign<&'_ Saturating<u16>> for Saturating<u16>
impl<'_> BitOrAssign<&'_ Saturating<u32>> for Saturating<u32>
impl<'_> BitOrAssign<&'_ Saturating<u64>> for Saturating<u64>
impl<'_> BitOrAssign<&'_ Saturating<u8>> for Saturating<u8>
impl<'_> BitOrAssign<&'_ Saturating<usize>> for Saturating<usize>
pub fn bitor_assign(&mut self, other: &Saturating<usize>)
Performs the |=
operation. Read more
impl BitOrAssign<Saturating<i128>> for Saturating<i128>
impl BitOrAssign<Saturating<i16>> for Saturating<i16>
impl BitOrAssign<Saturating<i32>> for Saturating<i32>
impl BitOrAssign<Saturating<i64>> for Saturating<i64>
impl BitOrAssign<Saturating<i8>> for Saturating<i8>
impl BitOrAssign<Saturating<isize>> for Saturating<isize>
impl BitOrAssign<Saturating<u128>> for Saturating<u128>
impl BitOrAssign<Saturating<u16>> for Saturating<u16>
impl BitOrAssign<Saturating<u32>> for Saturating<u32>
impl BitOrAssign<Saturating<u64>> for Saturating<u64>
impl BitOrAssign<Saturating<u8>> for Saturating<u8>
impl BitOrAssign<Saturating<usize>> for Saturating<usize>
impl<'_, '_> BitXor<&'_ Saturating<i128>> for &'_ Saturating<i128>
type Output = <Saturating<i128> as BitXor<Saturating<i128>>>::Output
The resulting type after applying the ^
operator.
pub fn bitxor(
self,
other: &Saturating<i128>
) -> <Saturating<i128> as BitXor<Saturating<i128>>>::Output
Performs the ^
operation. Read more
impl<'_> BitXor<&'_ Saturating<i128>> for Saturating<i128>
type Output = <Saturating<i128> as BitXor<Saturating<i128>>>::Output
The resulting type after applying the ^
operator.
pub fn bitxor(
self,
other: &Saturating<i128>
) -> <Saturating<i128> as BitXor<Saturating<i128>>>::Output
Performs the ^
operation. Read more
impl<'_, '_> BitXor<&'_ Saturating<i16>> for &'_ Saturating<i16>
type Output = <Saturating<i16> as BitXor<Saturating<i16>>>::Output
The resulting type after applying the ^
operator.
pub fn bitxor(
self,
other: &Saturating<i16>
) -> <Saturating<i16> as BitXor<Saturating<i16>>>::Output
Performs the ^
operation. Read more
impl<'_> BitXor<&'_ Saturating<i16>> for Saturating<i16>
type Output = <Saturating<i16> as BitXor<Saturating<i16>>>::Output
The resulting type after applying the ^
operator.
pub fn bitxor(
self,
other: &Saturating<i16>
) -> <Saturating<i16> as BitXor<Saturating<i16>>>::Output
Performs the ^
operation. Read more
impl<'_> BitXor<&'_ Saturating<i32>> for Saturating<i32>
type Output = <Saturating<i32> as BitXor<Saturating<i32>>>::Output
The resulting type after applying the ^
operator.
pub fn bitxor(
self,
other: &Saturating<i32>
) -> <Saturating<i32> as BitXor<Saturating<i32>>>::Output
Performs the ^
operation. Read more
impl<'_, '_> BitXor<&'_ Saturating<i32>> for &'_ Saturating<i32>
type Output = <Saturating<i32> as BitXor<Saturating<i32>>>::Output
The resulting type after applying the ^
operator.
pub fn bitxor(
self,
other: &Saturating<i32>
) -> <Saturating<i32> as BitXor<Saturating<i32>>>::Output
Performs the ^
operation. Read more
impl<'_, '_> BitXor<&'_ Saturating<i64>> for &'_ Saturating<i64>
type Output = <Saturating<i64> as BitXor<Saturating<i64>>>::Output
The resulting type after applying the ^
operator.
pub fn bitxor(
self,
other: &Saturating<i64>
) -> <Saturating<i64> as BitXor<Saturating<i64>>>::Output
Performs the ^
operation. Read more
impl<'_> BitXor<&'_ Saturating<i64>> for Saturating<i64>
type Output = <Saturating<i64> as BitXor<Saturating<i64>>>::Output
The resulting type after applying the ^
operator.
pub fn bitxor(
self,
other: &Saturating<i64>
) -> <Saturating<i64> as BitXor<Saturating<i64>>>::Output
Performs the ^
operation. Read more
impl<'_> BitXor<&'_ Saturating<i8>> for Saturating<i8>
type Output = <Saturating<i8> as BitXor<Saturating<i8>>>::Output
The resulting type after applying the ^
operator.
pub fn bitxor(
self,
other: &Saturating<i8>
) -> <Saturating<i8> as BitXor<Saturating<i8>>>::Output
Performs the ^
operation. Read more
impl<'_, '_> BitXor<&'_ Saturating<i8>> for &'_ Saturating<i8>
type Output = <Saturating<i8> as BitXor<Saturating<i8>>>::Output
The resulting type after applying the ^
operator.
pub fn bitxor(
self,
other: &Saturating<i8>
) -> <Saturating<i8> as BitXor<Saturating<i8>>>::Output
Performs the ^
operation. Read more
impl<'_> BitXor<&'_ Saturating<isize>> for Saturating<isize>
type Output = <Saturating<isize> as BitXor<Saturating<isize>>>::Output
The resulting type after applying the ^
operator.
pub fn bitxor(
self,
other: &Saturating<isize>
) -> <Saturating<isize> as BitXor<Saturating<isize>>>::Output
Performs the ^
operation. Read more
impl<'_, '_> BitXor<&'_ Saturating<isize>> for &'_ Saturating<isize>
type Output = <Saturating<isize> as BitXor<Saturating<isize>>>::Output
The resulting type after applying the ^
operator.
pub fn bitxor(
self,
other: &Saturating<isize>
) -> <Saturating<isize> as BitXor<Saturating<isize>>>::Output
Performs the ^
operation. Read more
impl<'_> BitXor<&'_ Saturating<u128>> for Saturating<u128>
type Output = <Saturating<u128> as BitXor<Saturating<u128>>>::Output
The resulting type after applying the ^
operator.
pub fn bitxor(
self,
other: &Saturating<u128>
) -> <Saturating<u128> as BitXor<Saturating<u128>>>::Output
Performs the ^
operation. Read more
impl<'_, '_> BitXor<&'_ Saturating<u128>> for &'_ Saturating<u128>
type Output = <Saturating<u128> as BitXor<Saturating<u128>>>::Output
The resulting type after applying the ^
operator.
pub fn bitxor(
self,
other: &Saturating<u128>
) -> <Saturating<u128> as BitXor<Saturating<u128>>>::Output
Performs the ^
operation. Read more
impl<'_> BitXor<&'_ Saturating<u16>> for Saturating<u16>
type Output = <Saturating<u16> as BitXor<Saturating<u16>>>::Output
The resulting type after applying the ^
operator.
pub fn bitxor(
self,
other: &Saturating<u16>
) -> <Saturating<u16> as BitXor<Saturating<u16>>>::Output
Performs the ^
operation. Read more
impl<'_, '_> BitXor<&'_ Saturating<u16>> for &'_ Saturating<u16>
type Output = <Saturating<u16> as BitXor<Saturating<u16>>>::Output
The resulting type after applying the ^
operator.
pub fn bitxor(
self,
other: &Saturating<u16>
) -> <Saturating<u16> as BitXor<Saturating<u16>>>::Output
Performs the ^
operation. Read more
impl<'_, '_> BitXor<&'_ Saturating<u32>> for &'_ Saturating<u32>
type Output = <Saturating<u32> as BitXor<Saturating<u32>>>::Output
The resulting type after applying the ^
operator.
pub fn bitxor(
self,
other: &Saturating<u32>
) -> <Saturating<u32> as BitXor<Saturating<u32>>>::Output
Performs the ^
operation. Read more
impl<'_> BitXor<&'_ Saturating<u32>> for Saturating<u32>
type Output = <Saturating<u32> as BitXor<Saturating<u32>>>::Output
The resulting type after applying the ^
operator.
pub fn bitxor(
self,
other: &Saturating<u32>
) -> <Saturating<u32> as BitXor<Saturating<u32>>>::Output
Performs the ^
operation. Read more
impl<'_> BitXor<&'_ Saturating<u64>> for Saturating<u64>
type Output = <Saturating<u64> as BitXor<Saturating<u64>>>::Output
The resulting type after applying the ^
operator.
pub fn bitxor(
self,
other: &Saturating<u64>
) -> <Saturating<u64> as BitXor<Saturating<u64>>>::Output
Performs the ^
operation. Read more
impl<'_, '_> BitXor<&'_ Saturating<u64>> for &'_ Saturating<u64>
type Output = <Saturating<u64> as BitXor<Saturating<u64>>>::Output
The resulting type after applying the ^
operator.
pub fn bitxor(
self,
other: &Saturating<u64>
) -> <Saturating<u64> as BitXor<Saturating<u64>>>::Output
Performs the ^
operation. Read more
impl<'_> BitXor<&'_ Saturating<u8>> for Saturating<u8>
type Output = <Saturating<u8> as BitXor<Saturating<u8>>>::Output
The resulting type after applying the ^
operator.
pub fn bitxor(
self,
other: &Saturating<u8>
) -> <Saturating<u8> as BitXor<Saturating<u8>>>::Output
Performs the ^
operation. Read more
impl<'_, '_> BitXor<&'_ Saturating<u8>> for &'_ Saturating<u8>
type Output = <Saturating<u8> as BitXor<Saturating<u8>>>::Output
The resulting type after applying the ^
operator.
pub fn bitxor(
self,
other: &Saturating<u8>
) -> <Saturating<u8> as BitXor<Saturating<u8>>>::Output
Performs the ^
operation. Read more
impl<'_, '_> BitXor<&'_ Saturating<usize>> for &'_ Saturating<usize>
type Output = <Saturating<usize> as BitXor<Saturating<usize>>>::Output
The resulting type after applying the ^
operator.
pub fn bitxor(
self,
other: &Saturating<usize>
) -> <Saturating<usize> as BitXor<Saturating<usize>>>::Output
Performs the ^
operation. Read more
impl<'_> BitXor<&'_ Saturating<usize>> for Saturating<usize>
type Output = <Saturating<usize> as BitXor<Saturating<usize>>>::Output
The resulting type after applying the ^
operator.
pub fn bitxor(
self,
other: &Saturating<usize>
) -> <Saturating<usize> as BitXor<Saturating<usize>>>::Output
Performs the ^
operation. Read more
impl BitXor<Saturating<i128>> for Saturating<i128>
type Output = Saturating<i128>
The resulting type after applying the ^
operator.
pub fn bitxor(self, other: Saturating<i128>) -> Saturating<i128>
Performs the ^
operation. Read more
impl<'a> BitXor<Saturating<i128>> for &'a Saturating<i128>
type Output = <Saturating<i128> as BitXor<Saturating<i128>>>::Output
The resulting type after applying the ^
operator.
pub fn bitxor(
self,
other: Saturating<i128>
) -> <Saturating<i128> as BitXor<Saturating<i128>>>::Output
Performs the ^
operation. Read more
impl BitXor<Saturating<i16>> for Saturating<i16>
type Output = Saturating<i16>
The resulting type after applying the ^
operator.
pub fn bitxor(self, other: Saturating<i16>) -> Saturating<i16>
Performs the ^
operation. Read more
impl<'a> BitXor<Saturating<i16>> for &'a Saturating<i16>
type Output = <Saturating<i16> as BitXor<Saturating<i16>>>::Output
The resulting type after applying the ^
operator.
pub fn bitxor(
self,
other: Saturating<i16>
) -> <Saturating<i16> as BitXor<Saturating<i16>>>::Output
Performs the ^
operation. Read more
impl BitXor<Saturating<i32>> for Saturating<i32>
type Output = Saturating<i32>
The resulting type after applying the ^
operator.
pub fn bitxor(self, other: Saturating<i32>) -> Saturating<i32>
Performs the ^
operation. Read more
impl<'a> BitXor<Saturating<i32>> for &'a Saturating<i32>
type Output = <Saturating<i32> as BitXor<Saturating<i32>>>::Output
The resulting type after applying the ^
operator.
pub fn bitxor(
self,
other: Saturating<i32>
) -> <Saturating<i32> as BitXor<Saturating<i32>>>::Output
Performs the ^
operation. Read more
impl<'a> BitXor<Saturating<i64>> for &'a Saturating<i64>
type Output = <Saturating<i64> as BitXor<Saturating<i64>>>::Output
The resulting type after applying the ^
operator.
pub fn bitxor(
self,
other: Saturating<i64>
) -> <Saturating<i64> as BitXor<Saturating<i64>>>::Output
Performs the ^
operation. Read more
impl BitXor<Saturating<i64>> for Saturating<i64>
type Output = Saturating<i64>
The resulting type after applying the ^
operator.
pub fn bitxor(self, other: Saturating<i64>) -> Saturating<i64>
Performs the ^
operation. Read more
impl<'a> BitXor<Saturating<i8>> for &'a Saturating<i8>
type Output = <Saturating<i8> as BitXor<Saturating<i8>>>::Output
The resulting type after applying the ^
operator.
pub fn bitxor(
self,
other: Saturating<i8>
) -> <Saturating<i8> as BitXor<Saturating<i8>>>::Output
Performs the ^
operation. Read more
impl BitXor<Saturating<i8>> for Saturating<i8>
type Output = Saturating<i8>
The resulting type after applying the ^
operator.
pub fn bitxor(self, other: Saturating<i8>) -> Saturating<i8>
Performs the ^
operation. Read more
impl<'a> BitXor<Saturating<isize>> for &'a Saturating<isize>
type Output = <Saturating<isize> as BitXor<Saturating<isize>>>::Output
The resulting type after applying the ^
operator.
pub fn bitxor(
self,
other: Saturating<isize>
) -> <Saturating<isize> as BitXor<Saturating<isize>>>::Output
Performs the ^
operation. Read more
impl BitXor<Saturating<isize>> for Saturating<isize>
type Output = Saturating<isize>
The resulting type after applying the ^
operator.
pub fn bitxor(self, other: Saturating<isize>) -> Saturating<isize>
Performs the ^
operation. Read more
impl BitXor<Saturating<u128>> for Saturating<u128>
type Output = Saturating<u128>
The resulting type after applying the ^
operator.
pub fn bitxor(self, other: Saturating<u128>) -> Saturating<u128>
Performs the ^
operation. Read more
impl<'a> BitXor<Saturating<u128>> for &'a Saturating<u128>
type Output = <Saturating<u128> as BitXor<Saturating<u128>>>::Output
The resulting type after applying the ^
operator.
pub fn bitxor(
self,
other: Saturating<u128>
) -> <Saturating<u128> as BitXor<Saturating<u128>>>::Output
Performs the ^
operation. Read more
impl BitXor<Saturating<u16>> for Saturating<u16>
type Output = Saturating<u16>
The resulting type after applying the ^
operator.
pub fn bitxor(self, other: Saturating<u16>) -> Saturating<u16>
Performs the ^
operation. Read more
impl<'a> BitXor<Saturating<u16>> for &'a Saturating<u16>
type Output = <Saturating<u16> as BitXor<Saturating<u16>>>::Output
The resulting type after applying the ^
operator.
pub fn bitxor(
self,
other: Saturating<u16>
) -> <Saturating<u16> as BitXor<Saturating<u16>>>::Output
Performs the ^
operation. Read more
impl<'a> BitXor<Saturating<u32>> for &'a Saturating<u32>
type Output = <Saturating<u32> as BitXor<Saturating<u32>>>::Output
The resulting type after applying the ^
operator.
pub fn bitxor(
self,
other: Saturating<u32>
) -> <Saturating<u32> as BitXor<Saturating<u32>>>::Output
Performs the ^
operation. Read more
impl BitXor<Saturating<u32>> for Saturating<u32>
type Output = Saturating<u32>
The resulting type after applying the ^
operator.
pub fn bitxor(self, other: Saturating<u32>) -> Saturating<u32>
Performs the ^
operation. Read more
impl<'a> BitXor<Saturating<u64>> for &'a Saturating<u64>
type Output = <Saturating<u64> as BitXor<Saturating<u64>>>::Output
The resulting type after applying the ^
operator.
pub fn bitxor(
self,
other: Saturating<u64>
) -> <Saturating<u64> as BitXor<Saturating<u64>>>::Output
Performs the ^
operation. Read more
impl BitXor<Saturating<u64>> for Saturating<u64>
type Output = Saturating<u64>
The resulting type after applying the ^
operator.
pub fn bitxor(self, other: Saturating<u64>) -> Saturating<u64>
Performs the ^
operation. Read more
impl BitXor<Saturating<u8>> for Saturating<u8>
type Output = Saturating<u8>
The resulting type after applying the ^
operator.
pub fn bitxor(self, other: Saturating<u8>) -> Saturating<u8>
Performs the ^
operation. Read more
impl<'a> BitXor<Saturating<u8>> for &'a Saturating<u8>
type Output = <Saturating<u8> as BitXor<Saturating<u8>>>::Output
The resulting type after applying the ^
operator.
pub fn bitxor(
self,
other: Saturating<u8>
) -> <Saturating<u8> as BitXor<Saturating<u8>>>::Output
Performs the ^
operation. Read more
impl BitXor<Saturating<usize>> for Saturating<usize>
type Output = Saturating<usize>
The resulting type after applying the ^
operator.
pub fn bitxor(self, other: Saturating<usize>) -> Saturating<usize>
Performs the ^
operation. Read more
impl<'a> BitXor<Saturating<usize>> for &'a Saturating<usize>
type Output = <Saturating<usize> as BitXor<Saturating<usize>>>::Output
The resulting type after applying the ^
operator.
pub fn bitxor(
self,
other: Saturating<usize>
) -> <Saturating<usize> as BitXor<Saturating<usize>>>::Output
Performs the ^
operation. Read more
impl<'_> BitXorAssign<&'_ Saturating<i128>> for Saturating<i128>
pub fn bitxor_assign(&mut self, other: &Saturating<i128>)
Performs the ^=
operation. Read more
impl<'_> BitXorAssign<&'_ Saturating<i16>> for Saturating<i16>
impl<'_> BitXorAssign<&'_ Saturating<i32>> for Saturating<i32>
impl<'_> BitXorAssign<&'_ Saturating<i64>> for Saturating<i64>
impl<'_> BitXorAssign<&'_ Saturating<i8>> for Saturating<i8>
impl<'_> BitXorAssign<&'_ Saturating<isize>> for Saturating<isize>
pub fn bitxor_assign(&mut self, other: &Saturating<isize>)
Performs the ^=
operation. Read more
impl<'_> BitXorAssign<&'_ Saturating<u128>> for Saturating<u128>
pub fn bitxor_assign(&mut self, other: &Saturating<u128>)
Performs the ^=
operation. Read more
impl<'_> BitXorAssign<&'_ Saturating<u16>> for Saturating<u16>
impl<'_> BitXorAssign<&'_ Saturating<u32>> for Saturating<u32>
impl<'_> BitXorAssign<&'_ Saturating<u64>> for Saturating<u64>
impl<'_> BitXorAssign<&'_ Saturating<u8>> for Saturating<u8>
impl<'_> BitXorAssign<&'_ Saturating<usize>> for Saturating<usize>
pub fn bitxor_assign(&mut self, other: &Saturating<usize>)
Performs the ^=
operation. Read more
impl BitXorAssign<Saturating<i128>> for Saturating<i128>
impl BitXorAssign<Saturating<i16>> for Saturating<i16>
impl BitXorAssign<Saturating<i32>> for Saturating<i32>
impl BitXorAssign<Saturating<i64>> for Saturating<i64>
impl BitXorAssign<Saturating<i8>> for Saturating<i8>
impl BitXorAssign<Saturating<isize>> for Saturating<isize>
pub fn bitxor_assign(&mut self, other: Saturating<isize>)
Performs the ^=
operation. Read more
impl BitXorAssign<Saturating<u128>> for Saturating<u128>
impl BitXorAssign<Saturating<u16>> for Saturating<u16>
impl BitXorAssign<Saturating<u32>> for Saturating<u32>
impl BitXorAssign<Saturating<u64>> for Saturating<u64>
impl BitXorAssign<Saturating<u8>> for Saturating<u8>
impl BitXorAssign<Saturating<usize>> for Saturating<usize>
pub fn bitxor_assign(&mut self, other: Saturating<usize>)
Performs the ^=
operation. Read more
pub fn clone(&self) -> Saturating<T>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
pub fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
Formats the value using the given formatter. Read more
pub fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
Formats the value using the given formatter. Read more
impl<'_> Div<&'_ Saturating<i128>> for Saturating<i128>
type Output = <Saturating<i128> as Div<Saturating<i128>>>::Output
The resulting type after applying the /
operator.
pub fn div(
self,
other: &Saturating<i128>
) -> <Saturating<i128> as Div<Saturating<i128>>>::Output
Performs the /
operation. Read more
impl<'_, '_> Div<&'_ Saturating<i128>> for &'_ Saturating<i128>
type Output = <Saturating<i128> as Div<Saturating<i128>>>::Output
The resulting type after applying the /
operator.
pub fn div(
self,
other: &Saturating<i128>
) -> <Saturating<i128> as Div<Saturating<i128>>>::Output
Performs the /
operation. Read more
impl<'_> Div<&'_ Saturating<i16>> for Saturating<i16>
type Output = <Saturating<i16> as Div<Saturating<i16>>>::Output
The resulting type after applying the /
operator.
pub fn div(
self,
other: &Saturating<i16>
) -> <Saturating<i16> as Div<Saturating<i16>>>::Output
Performs the /
operation. Read more
impl<'_, '_> Div<&'_ Saturating<i16>> for &'_ Saturating<i16>
type Output = <Saturating<i16> as Div<Saturating<i16>>>::Output
The resulting type after applying the /
operator.
pub fn div(
self,
other: &Saturating<i16>
) -> <Saturating<i16> as Div<Saturating<i16>>>::Output
Performs the /
operation. Read more
impl<'_> Div<&'_ Saturating<i32>> for Saturating<i32>
type Output = <Saturating<i32> as Div<Saturating<i32>>>::Output
The resulting type after applying the /
operator.
pub fn div(
self,
other: &Saturating<i32>
) -> <Saturating<i32> as Div<Saturating<i32>>>::Output
Performs the /
operation. Read more
impl<'_, '_> Div<&'_ Saturating<i32>> for &'_ Saturating<i32>
type Output = <Saturating<i32> as Div<Saturating<i32>>>::Output
The resulting type after applying the /
operator.
pub fn div(
self,
other: &Saturating<i32>
) -> <Saturating<i32> as Div<Saturating<i32>>>::Output
Performs the /
operation. Read more
impl<'_> Div<&'_ Saturating<i64>> for Saturating<i64>
type Output = <Saturating<i64> as Div<Saturating<i64>>>::Output
The resulting type after applying the /
operator.
pub fn div(
self,
other: &Saturating<i64>
) -> <Saturating<i64> as Div<Saturating<i64>>>::Output
Performs the /
operation. Read more
impl<'_, '_> Div<&'_ Saturating<i64>> for &'_ Saturating<i64>
type Output = <Saturating<i64> as Div<Saturating<i64>>>::Output
The resulting type after applying the /
operator.
pub fn div(
self,
other: &Saturating<i64>
) -> <Saturating<i64> as Div<Saturating<i64>>>::Output
Performs the /
operation. Read more
impl<'_> Div<&'_ Saturating<i8>> for Saturating<i8>
type Output = <Saturating<i8> as Div<Saturating<i8>>>::Output
The resulting type after applying the /
operator.
pub fn div(
self,
other: &Saturating<i8>
) -> <Saturating<i8> as Div<Saturating<i8>>>::Output
Performs the /
operation. Read more
impl<'_, '_> Div<&'_ Saturating<i8>> for &'_ Saturating<i8>
type Output = <Saturating<i8> as Div<Saturating<i8>>>::Output
The resulting type after applying the /
operator.
pub fn div(
self,
other: &Saturating<i8>
) -> <Saturating<i8> as Div<Saturating<i8>>>::Output
Performs the /
operation. Read more
impl<'_, '_> Div<&'_ Saturating<isize>> for &'_ Saturating<isize>
type Output = <Saturating<isize> as Div<Saturating<isize>>>::Output
The resulting type after applying the /
operator.
pub fn div(
self,
other: &Saturating<isize>
) -> <Saturating<isize> as Div<Saturating<isize>>>::Output
Performs the /
operation. Read more
impl<'_> Div<&'_ Saturating<isize>> for Saturating<isize>
type Output = <Saturating<isize> as Div<Saturating<isize>>>::Output
The resulting type after applying the /
operator.
pub fn div(
self,
other: &Saturating<isize>
) -> <Saturating<isize> as Div<Saturating<isize>>>::Output
Performs the /
operation. Read more
impl<'_> Div<&'_ Saturating<u128>> for Saturating<u128>
type Output = <Saturating<u128> as Div<Saturating<u128>>>::Output
The resulting type after applying the /
operator.
pub fn div(
self,
other: &Saturating<u128>
) -> <Saturating<u128> as Div<Saturating<u128>>>::Output
Performs the /
operation. Read more
impl<'_, '_> Div<&'_ Saturating<u128>> for &'_ Saturating<u128>
type Output = <Saturating<u128> as Div<Saturating<u128>>>::Output
The resulting type after applying the /
operator.
pub fn div(
self,
other: &Saturating<u128>
) -> <Saturating<u128> as Div<Saturating<u128>>>::Output
Performs the /
operation. Read more
impl<'_, '_> Div<&'_ Saturating<u16>> for &'_ Saturating<u16>
type Output = <Saturating<u16> as Div<Saturating<u16>>>::Output
The resulting type after applying the /
operator.
pub fn div(
self,
other: &Saturating<u16>
) -> <Saturating<u16> as Div<Saturating<u16>>>::Output
Performs the /
operation. Read more
impl<'_> Div<&'_ Saturating<u16>> for Saturating<u16>
type Output = <Saturating<u16> as Div<Saturating<u16>>>::Output
The resulting type after applying the /
operator.
pub fn div(
self,
other: &Saturating<u16>
) -> <Saturating<u16> as Div<Saturating<u16>>>::Output
Performs the /
operation. Read more
impl<'_> Div<&'_ Saturating<u32>> for Saturating<u32>
type Output = <Saturating<u32> as Div<Saturating<u32>>>::Output
The resulting type after applying the /
operator.
pub fn div(
self,
other: &Saturating<u32>
) -> <Saturating<u32> as Div<Saturating<u32>>>::Output
Performs the /
operation. Read more
impl<'_, '_> Div<&'_ Saturating<u32>> for &'_ Saturating<u32>
type Output = <Saturating<u32> as Div<Saturating<u32>>>::Output
The resulting type after applying the /
operator.
pub fn div(
self,
other: &Saturating<u32>
) -> <Saturating<u32> as Div<Saturating<u32>>>::Output
Performs the /
operation. Read more
impl<'_> Div<&'_ Saturating<u64>> for Saturating<u64>
type Output = <Saturating<u64> as Div<Saturating<u64>>>::Output
The resulting type after applying the /
operator.
pub fn div(
self,
other: &Saturating<u64>
) -> <Saturating<u64> as Div<Saturating<u64>>>::Output
Performs the /
operation. Read more
impl<'_, '_> Div<&'_ Saturating<u64>> for &'_ Saturating<u64>
type Output = <Saturating<u64> as Div<Saturating<u64>>>::Output
The resulting type after applying the /
operator.
pub fn div(
self,
other: &Saturating<u64>
) -> <Saturating<u64> as Div<Saturating<u64>>>::Output
Performs the /
operation. Read more
impl<'_> Div<&'_ Saturating<u8>> for Saturating<u8>
type Output = <Saturating<u8> as Div<Saturating<u8>>>::Output
The resulting type after applying the /
operator.
pub fn div(
self,
other: &Saturating<u8>
) -> <Saturating<u8> as Div<Saturating<u8>>>::Output
Performs the /
operation. Read more
impl<'_, '_> Div<&'_ Saturating<u8>> for &'_ Saturating<u8>
type Output = <Saturating<u8> as Div<Saturating<u8>>>::Output
The resulting type after applying the /
operator.
pub fn div(
self,
other: &Saturating<u8>
) -> <Saturating<u8> as Div<Saturating<u8>>>::Output
Performs the /
operation. Read more
impl<'_, '_> Div<&'_ Saturating<usize>> for &'_ Saturating<usize>
type Output = <Saturating<usize> as Div<Saturating<usize>>>::Output
The resulting type after applying the /
operator.
pub fn div(
self,
other: &Saturating<usize>
) -> <Saturating<usize> as Div<Saturating<usize>>>::Output
Performs the /
operation. Read more
impl<'_> Div<&'_ Saturating<usize>> for Saturating<usize>
type Output = <Saturating<usize> as Div<Saturating<usize>>>::Output
The resulting type after applying the /
operator.
pub fn div(
self,
other: &Saturating<usize>
) -> <Saturating<usize> as Div<Saturating<usize>>>::Output
Performs the /
operation. Read more
impl Div<Saturating<i128>> for Saturating<i128>
Examples
Basic usage:
#![feature(saturating_int_impl, saturating_div)] use std::num::Saturating; assert_eq!(Saturating(2i128), Saturating(5i128) / Saturating(2)); assert_eq!(Saturating(i128::MAX), Saturating(i128::MAX) / Saturating(1)); assert_eq!(Saturating(i128::MIN), Saturating(i128::MIN) / Saturating(1));
#![feature(saturating_int_impl, saturating_div)] use std::num::Saturating; let _ = Saturating(0i128) / Saturating(0);
type Output = Saturating<i128>
The resulting type after applying the /
operator.
pub fn div(self, other: Saturating<i128>) -> Saturating<i128>
Performs the /
operation. Read more
impl<'a> Div<Saturating<i128>> for &'a Saturating<i128>
type Output = <Saturating<i128> as Div<Saturating<i128>>>::Output
The resulting type after applying the /
operator.
pub fn div(
self,
other: Saturating<i128>
) -> <Saturating<i128> as Div<Saturating<i128>>>::Output
Performs the /
operation. Read more
impl Div<Saturating<i16>> for Saturating<i16>
Examples
Basic usage:
#![feature(saturating_int_impl, saturating_div)] use std::num::Saturating; assert_eq!(Saturating(2i16), Saturating(5i16) / Saturating(2)); assert_eq!(Saturating(i16::MAX), Saturating(i16::MAX) / Saturating(1)); assert_eq!(Saturating(i16::MIN), Saturating(i16::MIN) / Saturating(1));
#![feature(saturating_int_impl, saturating_div)] use std::num::Saturating; let _ = Saturating(0i16) / Saturating(0);
type Output = Saturating<i16>
The resulting type after applying the /
operator.
pub fn div(self, other: Saturating<i16>) -> Saturating<i16>
Performs the /
operation. Read more
impl<'a> Div<Saturating<i16>> for &'a Saturating<i16>
type Output = <Saturating<i16> as Div<Saturating<i16>>>::Output
The resulting type after applying the /
operator.
pub fn div(
self,
other: Saturating<i16>
) -> <Saturating<i16> as Div<Saturating<i16>>>::Output
Performs the /
operation. Read more
impl Div<Saturating<i32>> for Saturating<i32>
Examples
Basic usage:
#![feature(saturating_int_impl, saturating_div)] use std::num::Saturating; assert_eq!(Saturating(2i32), Saturating(5i32) / Saturating(2)); assert_eq!(Saturating(i32::MAX), Saturating(i32::MAX) / Saturating(1)); assert_eq!(Saturating(i32::MIN), Saturating(i32::MIN) / Saturating(1));
#![feature(saturating_int_impl, saturating_div)] use std::num::Saturating; let _ = Saturating(0i32) / Saturating(0);
type Output = Saturating<i32>
The resulting type after applying the /
operator.
pub fn div(self, other: Saturating<i32>) -> Saturating<i32>
Performs the /
operation. Read more
impl<'a> Div<Saturating<i32>> for &'a Saturating<i32>
type Output = <Saturating<i32> as Div<Saturating<i32>>>::Output
The resulting type after applying the /
operator.
pub fn div(
self,
other: Saturating<i32>
) -> <Saturating<i32> as Div<Saturating<i32>>>::Output
Performs the /
operation. Read more
impl Div<Saturating<i64>> for Saturating<i64>
Examples
Basic usage:
#![feature(saturating_int_impl, saturating_div)] use std::num::Saturating; assert_eq!(Saturating(2i64), Saturating(5i64) / Saturating(2)); assert_eq!(Saturating(i64::MAX), Saturating(i64::MAX) / Saturating(1)); assert_eq!(Saturating(i64::MIN), Saturating(i64::MIN) / Saturating(1));
#![feature(saturating_int_impl, saturating_div)] use std::num::Saturating; let _ = Saturating(0i64) / Saturating(0);
type Output = Saturating<i64>
The resulting type after applying the /
operator.
pub fn div(self, other: Saturating<i64>) -> Saturating<i64>
Performs the /
operation. Read more
impl<'a> Div<Saturating<i64>> for &'a Saturating<i64>
type Output = <Saturating<i64> as Div<Saturating<i64>>>::Output
The resulting type after applying the /
operator.
pub fn div(
self,
other: Saturating<i64>
) -> <Saturating<i64> as Div<Saturating<i64>>>::Output
Performs the /
operation. Read more
impl<'a> Div<Saturating<i8>> for &'a Saturating<i8>
type Output = <Saturating<i8> as Div<Saturating<i8>>>::Output
The resulting type after applying the /
operator.
pub fn div(
self,
other: Saturating<i8>
) -> <Saturating<i8> as Div<Saturating<i8>>>::Output
Performs the /
operation. Read more
impl Div<Saturating<i8>> for Saturating<i8>
Examples
Basic usage:
#![feature(saturating_int_impl, saturating_div)] use std::num::Saturating; assert_eq!(Saturating(2i8), Saturating(5i8) / Saturating(2)); assert_eq!(Saturating(i8::MAX), Saturating(i8::MAX) / Saturating(1)); assert_eq!(Saturating(i8::MIN), Saturating(i8::MIN) / Saturating(1));
#![feature(saturating_int_impl, saturating_div)] use std::num::Saturating; let _ = Saturating(0i8) / Saturating(0);
type Output = Saturating<i8>
The resulting type after applying the /
operator.
pub fn div(self, other: Saturating<i8>) -> Saturating<i8>
Performs the /
operation. Read more
impl<'a> Div<Saturating<isize>> for &'a Saturating<isize>
type Output = <Saturating<isize> as Div<Saturating<isize>>>::Output
The resulting type after applying the /
operator.
pub fn div(
self,
other: Saturating<isize>
) -> <Saturating<isize> as Div<Saturating<isize>>>::Output
Performs the /
operation. Read more
impl Div<Saturating<isize>> for Saturating<isize>
Examples
Basic usage:
#![feature(saturating_int_impl, saturating_div)] use std::num::Saturating; assert_eq!(Saturating(2isize), Saturating(5isize) / Saturating(2)); assert_eq!(Saturating(isize::MAX), Saturating(isize::MAX) / Saturating(1)); assert_eq!(Saturating(isize::MIN), Saturating(isize::MIN) / Saturating(1));
#![feature(saturating_int_impl, saturating_div)] use std::num::Saturating; let _ = Saturating(0isize) / Saturating(0);
type Output = Saturating<isize>
The resulting type after applying the /
operator.
pub fn div(self, other: Saturating<isize>) -> Saturating<isize>
Performs the /
operation. Read more
impl Div<Saturating<u128>> for Saturating<u128>
Examples
Basic usage:
#![feature(saturating_int_impl, saturating_div)] use std::num::Saturating; assert_eq!(Saturating(2u128), Saturating(5u128) / Saturating(2)); assert_eq!(Saturating(u128::MAX), Saturating(u128::MAX) / Saturating(1)); assert_eq!(Saturating(u128::MIN), Saturating(u128::MIN) / Saturating(1));
#![feature(saturating_int_impl, saturating_div)] use std::num::Saturating; let _ = Saturating(0u128) / Saturating(0);
type Output = Saturating<u128>
The resulting type after applying the /
operator.
pub fn div(self, other: Saturating<u128>) -> Saturating<u128>
Performs the /
operation. Read more
impl<'a> Div<Saturating<u128>> for &'a Saturating<u128>
type Output = <Saturating<u128> as Div<Saturating<u128>>>::Output
The resulting type after applying the /
operator.
pub fn div(
self,
other: Saturating<u128>
) -> <Saturating<u128> as Div<Saturating<u128>>>::Output
Performs the /
operation. Read more
impl Div<Saturating<u16>> for Saturating<u16>
Examples
Basic usage:
#![feature(saturating_int_impl, saturating_div)] use std::num::Saturating; assert_eq!(Saturating(2u16), Saturating(5u16) / Saturating(2)); assert_eq!(Saturating(u16::MAX), Saturating(u16::MAX) / Saturating(1)); assert_eq!(Saturating(u16::MIN), Saturating(u16::MIN) / Saturating(1));
#![feature(saturating_int_impl, saturating_div)] use std::num::Saturating; let _ = Saturating(0u16) / Saturating(0);
type Output = Saturating<u16>
The resulting type after applying the /
operator.
pub fn div(self, other: Saturating<u16>) -> Saturating<u16>
Performs the /
operation. Read more
impl<'a> Div<Saturating<u16>> for &'a Saturating<u16>
type Output = <Saturating<u16> as Div<Saturating<u16>>>::Output
The resulting type after applying the /
operator.
pub fn div(
self,
other: Saturating<u16>
) -> <Saturating<u16> as Div<Saturating<u16>>>::Output
Performs the /
operation. Read more
impl Div<Saturating<u32>> for Saturating<u32>
Examples
Basic usage:
#![feature(saturating_int_impl, saturating_div)] use std::num::Saturating; assert_eq!(Saturating(2u32), Saturating(5u32) / Saturating(2)); assert_eq!(Saturating(u32::MAX), Saturating(u32::MAX) / Saturating(1)); assert_eq!(Saturating(u32::MIN), Saturating(u32::MIN) / Saturating(1));
#![feature(saturating_int_impl, saturating_div)] use std::num::Saturating; let _ = Saturating(0u32) / Saturating(0);
type Output = Saturating<u32>
The resulting type after applying the /
operator.
pub fn div(self, other: Saturating<u32>) -> Saturating<u32>
Performs the /
operation. Read more
impl<'a> Div<Saturating<u32>> for &'a Saturating<u32>
type Output = <Saturating<u32> as Div<Saturating<u32>>>::Output
The resulting type after applying the /
operator.
pub fn div(
self,
other: Saturating<u32>
) -> <Saturating<u32> as Div<Saturating<u32>>>::Output
Performs the /
operation. Read more
impl Div<Saturating<u64>> for Saturating<u64>
Examples
Basic usage:
#![feature(saturating_int_impl, saturating_div)] use std::num::Saturating; assert_eq!(Saturating(2u64), Saturating(5u64) / Saturating(2)); assert_eq!(Saturating(u64::MAX), Saturating(u64::MAX) / Saturating(1)); assert_eq!(Saturating(u64::MIN), Saturating(u64::MIN) / Saturating(1));
#![feature(saturating_int_impl, saturating_div)] use std::num::Saturating; let _ = Saturating(0u64) / Saturating(0);
type Output = Saturating<u64>
The resulting type after applying the /
operator.
pub fn div(self, other: Saturating<u64>) -> Saturating<u64>
Performs the /
operation. Read more
impl<'a> Div<Saturating<u64>> for &'a Saturating<u64>
type Output = <Saturating<u64> as Div<Saturating<u64>>>::Output
The resulting type after applying the /
operator.
pub fn div(
self,
other: Saturating<u64>
) -> <Saturating<u64> as Div<Saturating<u64>>>::Output
Performs the /
operation. Read more
impl<'a> Div<Saturating<u8>> for &'a Saturating<u8>
type Output = <Saturating<u8> as Div<Saturating<u8>>>::Output
The resulting type after applying the /
operator.
pub fn div(
self,
other: Saturating<u8>
) -> <Saturating<u8> as Div<Saturating<u8>>>::Output
Performs the /
operation. Read more
impl Div<Saturating<u8>> for Saturating<u8>
Examples
Basic usage:
#![feature(saturating_int_impl, saturating_div)] use std::num::Saturating; assert_eq!(Saturating(2u8), Saturating(5u8) / Saturating(2)); assert_eq!(Saturating(u8::MAX), Saturating(u8::MAX) / Saturating(1)); assert_eq!(Saturating(u8::MIN), Saturating(u8::MIN) / Saturating(1));
#![feature(saturating_int_impl, saturating_div)] use std::num::Saturating; let _ = Saturating(0u8) / Saturating(0);
type Output = Saturating<u8>
The resulting type after applying the /
operator.
pub fn div(self, other: Saturating<u8>) -> Saturating<u8>
Performs the /
operation. Read more
impl<'a> Div<Saturating<usize>> for &'a Saturating<usize>
type Output = <Saturating<usize> as Div<Saturating<usize>>>::Output
The resulting type after applying the /
operator.
pub fn div(
self,
other: Saturating<usize>
) -> <Saturating<usize> as Div<Saturating<usize>>>::Output
Performs the /
operation. Read more
impl Div<Saturating<usize>> for Saturating<usize>
Examples
Basic usage:
#![feature(saturating_int_impl, saturating_div)] use std::num::Saturating; assert_eq!(Saturating(2usize), Saturating(5usize) / Saturating(2)); assert_eq!(Saturating(usize::MAX), Saturating(usize::MAX) / Saturating(1)); assert_eq!(Saturating(usize::MIN), Saturating(usize::MIN) / Saturating(1));
#![feature(saturating_int_impl, saturating_div)] use std::num::Saturating; let _ = Saturating(0usize) / Saturating(0);
type Output = Saturating<usize>
The resulting type after applying the /
operator.
pub fn div(self, other: Saturating<usize>) -> Saturating<usize>
Performs the /
operation. Read more
impl<'_> DivAssign<&'_ Saturating<i128>> for Saturating<i128>
impl<'_> DivAssign<&'_ Saturating<i16>> for Saturating<i16>
impl<'_> DivAssign<&'_ Saturating<i32>> for Saturating<i32>
impl<'_> DivAssign<&'_ Saturating<i64>> for Saturating<i64>
impl<'_> DivAssign<&'_ Saturating<i8>> for Saturating<i8>
impl<'_> DivAssign<&'_ Saturating<isize>> for Saturating<isize>
impl<'_> DivAssign<&'_ Saturating<u128>> for Saturating<u128>
impl<'_> DivAssign<&'_ Saturating<u16>> for Saturating<u16>
impl<'_> DivAssign<&'_ Saturating<u32>> for Saturating<u32>
impl<'_> DivAssign<&'_ Saturating<u64>> for Saturating<u64>
impl<'_> DivAssign<&'_ Saturating<u8>> for Saturating<u8>
impl<'_> DivAssign<&'_ Saturating<usize>> for Saturating<usize>
impl DivAssign<Saturating<i128>> for Saturating<i128>
impl DivAssign<Saturating<i16>> for Saturating<i16>
impl DivAssign<Saturating<i32>> for Saturating<i32>
impl DivAssign<Saturating<i64>> for Saturating<i64>
impl DivAssign<Saturating<i8>> for Saturating<i8>
impl DivAssign<Saturating<isize>> for Saturating<isize>
impl DivAssign<Saturating<u128>> for Saturating<u128>
impl DivAssign<Saturating<u16>> for Saturating<u16>
impl DivAssign<Saturating<u32>> for Saturating<u32>
impl DivAssign<Saturating<u64>> for Saturating<u64>
impl DivAssign<Saturating<u8>> for Saturating<u8>
impl DivAssign<Saturating<usize>> for Saturating<usize>
pub fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
Formats the value using the given formatter.
impl<'_, '_> Mul<&'_ Saturating<i128>> for &'_ Saturating<i128>
type Output = <Saturating<i128> as Mul<Saturating<i128>>>::Output
The resulting type after applying the *
operator.
pub fn mul(
self,
other: &Saturating<i128>
) -> <Saturating<i128> as Mul<Saturating<i128>>>::Output
Performs the *
operation. Read more
impl<'_> Mul<&'_ Saturating<i128>> for Saturating<i128>
type Output = <Saturating<i128> as Mul<Saturating<i128>>>::Output
The resulting type after applying the *
operator.
pub fn mul(
self,
other: &Saturating<i128>
) -> <Saturating<i128> as Mul<Saturating<i128>>>::Output
Performs the *
operation. Read more
impl<'_> Mul<&'_ Saturating<i16>> for Saturating<i16>
type Output = <Saturating<i16> as Mul<Saturating<i16>>>::Output
The resulting type after applying the *
operator.
pub fn mul(
self,
other: &Saturating<i16>
) -> <Saturating<i16> as Mul<Saturating<i16>>>::Output
Performs the *
operation. Read more
impl<'_, '_> Mul<&'_ Saturating<i16>> for &'_ Saturating<i16>
type Output = <Saturating<i16> as Mul<Saturating<i16>>>::Output
The resulting type after applying the *
operator.
pub fn mul(
self,
other: &Saturating<i16>
) -> <Saturating<i16> as Mul<Saturating<i16>>>::Output
Performs the *
operation. Read more
impl<'_, '_> Mul<&'_ Saturating<i32>> for &'_ Saturating<i32>
type Output = <Saturating<i32> as Mul<Saturating<i32>>>::Output
The resulting type after applying the *
operator.
pub fn mul(
self,
other: &Saturating<i32>
) -> <Saturating<i32> as Mul<Saturating<i32>>>::Output
Performs the *
operation. Read more
impl<'_> Mul<&'_ Saturating<i32>> for Saturating<i32>
type Output = <Saturating<i32> as Mul<Saturating<i32>>>::Output
The resulting type after applying the *
operator.
pub fn mul(
self,
other: &Saturating<i32>
) -> <Saturating<i32> as Mul<Saturating<i32>>>::Output
Performs the *
operation. Read more
impl<'_> Mul<&'_ Saturating<i64>> for Saturating<i64>
type Output = <Saturating<i64> as Mul<Saturating<i64>>>::Output
The resulting type after applying the *
operator.
pub fn mul(
self,
other: &Saturating<i64>
) -> <Saturating<i64> as Mul<Saturating<i64>>>::Output
Performs the *
operation. Read more
impl<'_, '_> Mul<&'_ Saturating<i64>> for &'_ Saturating<i64>
type Output = <Saturating<i64> as Mul<Saturating<i64>>>::Output
The resulting type after applying the *
operator.
pub fn mul(
self,
other: &Saturating<i64>
) -> <Saturating<i64> as Mul<Saturating<i64>>>::Output
Performs the *
operation. Read more
impl<'_> Mul<&'_ Saturating<i8>> for Saturating<i8>
type Output = <Saturating<i8> as Mul<Saturating<i8>>>::Output
The resulting type after applying the *
operator.
pub fn mul(
self,
other: &Saturating<i8>
) -> <Saturating<i8> as Mul<Saturating<i8>>>::Output
Performs the *
operation. Read more
impl<'_, '_> Mul<&'_ Saturating<i8>> for &'_ Saturating<i8>
type Output = <Saturating<i8> as Mul<Saturating<i8>>>::Output
The resulting type after applying the *
operator.
pub fn mul(
self,
other: &Saturating<i8>
) -> <Saturating<i8> as Mul<Saturating<i8>>>::Output
Performs the *
operation. Read more
impl<'_> Mul<&'_ Saturating<isize>> for Saturating<isize>
type Output = <Saturating<isize> as Mul<Saturating<isize>>>::Output
The resulting type after applying the *
operator.
pub fn mul(
self,
other: &Saturating<isize>
) -> <Saturating<isize> as Mul<Saturating<isize>>>::Output
Performs the *
operation. Read more
impl<'_, '_> Mul<&'_ Saturating<isize>> for &'_ Saturating<isize>
type Output = <Saturating<isize> as Mul<Saturating<isize>>>::Output
The resulting type after applying the *
operator.
pub fn mul(
self,
other: &Saturating<isize>
) -> <Saturating<isize> as Mul<Saturating<isize>>>::Output
Performs the *
operation. Read more
impl<'_> Mul<&'_ Saturating<u128>> for Saturating<u128>
type Output = <Saturating<u128> as Mul<Saturating<u128>>>::Output
The resulting type after applying the *
operator.
pub fn mul(
self,
other: &Saturating<u128>
) -> <Saturating<u128> as Mul<Saturating<u128>>>::Output
Performs the *
operation. Read more
impl<'_, '_> Mul<&'_ Saturating<u128>> for &'_ Saturating<u128>
type Output = <Saturating<u128> as Mul<Saturating<u128>>>::Output
The resulting type after applying the *
operator.
pub fn mul(
self,
other: &Saturating<u128>
) -> <Saturating<u128> as Mul<Saturating<u128>>>::Output
Performs the *
operation. Read more
impl<'_, '_> Mul<&'_ Saturating<u16>> for &'_ Saturating<u16>
type Output = <Saturating<u16> as Mul<Saturating<u16>>>::Output
The resulting type after applying the *
operator.
pub fn mul(
self,
other: &Saturating<u16>
) -> <Saturating<u16> as Mul<Saturating<u16>>>::Output
Performs the *
operation. Read more
impl<'_> Mul<&'_ Saturating<u16>> for Saturating<u16>
type Output = <Saturating<u16> as Mul<Saturating<u16>>>::Output
The resulting type after applying the *
operator.
pub fn mul(
self,
other: &Saturating<u16>
) -> <Saturating<u16> as Mul<Saturating<u16>>>::Output
Performs the *
operation. Read more
impl<'_, '_> Mul<&'_ Saturating<u32>> for &'_ Saturating<u32>
type Output = <Saturating<u32> as Mul<Saturating<u32>>>::Output
The resulting type after applying the *
operator.
pub fn mul(
self,
other: &Saturating<u32>
) -> <Saturating<u32> as Mul<Saturating<u32>>>::Output
Performs the *
operation. Read more
impl<'_> Mul<&'_ Saturating<u32>> for Saturating<u32>
type Output = <Saturating<u32> as Mul<Saturating<u32>>>::Output
The resulting type after applying the *
operator.
pub fn mul(
self,
other: &Saturating<u32>
) -> <Saturating<u32> as Mul<Saturating<u32>>>::Output
Performs the *
operation. Read more
impl<'_> Mul<&'_ Saturating<u64>> for Saturating<u64>
type Output = <Saturating<u64> as Mul<Saturating<u64>>>::Output
The resulting type after applying the *
operator.
pub fn mul(
self,
other: &Saturating<u64>
) -> <Saturating<u64> as Mul<Saturating<u64>>>::Output
Performs the *
operation. Read more
impl<'_, '_> Mul<&'_ Saturating<u64>> for &'_ Saturating<u64>
type Output = <Saturating<u64> as Mul<Saturating<u64>>>::Output
The resulting type after applying the *
operator.
pub fn mul(
self,
other: &Saturating<u64>
) -> <Saturating<u64> as Mul<Saturating<u64>>>::Output
Performs the *
operation. Read more
impl<'_> Mul<&'_ Saturating<u8>> for Saturating<u8>
type Output = <Saturating<u8> as Mul<Saturating<u8>>>::Output
The resulting type after applying the *
operator.
pub fn mul(
self,
other: &Saturating<u8>
) -> <Saturating<u8> as Mul<Saturating<u8>>>::Output
Performs the *
operation. Read more
impl<'_, '_> Mul<&'_ Saturating<u8>> for &'_ Saturating<u8>
type Output = <Saturating<u8> as Mul<Saturating<u8>>>::Output
The resulting type after applying the *
operator.
pub fn mul(
self,
other: &Saturating<u8>
) -> <Saturating<u8> as Mul<Saturating<u8>>>::Output
Performs the *
operation. Read more
impl<'_> Mul<&'_ Saturating<usize>> for Saturating<usize>
type Output = <Saturating<usize> as Mul<Saturating<usize>>>::Output
The resulting type after applying the *
operator.
pub fn mul(
self,
other: &Saturating<usize>
) -> <Saturating<usize> as Mul<Saturating<usize>>>::Output
Performs the *
operation. Read more
impl<'_, '_> Mul<&'_ Saturating<usize>> for &'_ Saturating<usize>
type Output = <Saturating<usize> as Mul<Saturating<usize>>>::Output
The resulting type after applying the *
operator.
pub fn mul(
self,
other: &Saturating<usize>
) -> <Saturating<usize> as Mul<Saturating<usize>>>::Output
Performs the *
operation. Read more
impl<'a> Mul<Saturating<i128>> for &'a Saturating<i128>
type Output = <Saturating<i128> as Mul<Saturating<i128>>>::Output
The resulting type after applying the *
operator.
pub fn mul(
self,
other: Saturating<i128>
) -> <Saturating<i128> as Mul<Saturating<i128>>>::Output
Performs the *
operation. Read more
impl Mul<Saturating<i128>> for Saturating<i128>
type Output = Saturating<i128>
The resulting type after applying the *
operator.
pub fn mul(self, other: Saturating<i128>) -> Saturating<i128>
Performs the *
operation. Read more
impl<'a> Mul<Saturating<i16>> for &'a Saturating<i16>
type Output = <Saturating<i16> as Mul<Saturating<i16>>>::Output
The resulting type after applying the *
operator.
pub fn mul(
self,
other: Saturating<i16>
) -> <Saturating<i16> as Mul<Saturating<i16>>>::Output
Performs the *
operation. Read more
impl Mul<Saturating<i16>> for Saturating<i16>
type Output = Saturating<i16>
The resulting type after applying the *
operator.
pub fn mul(self, other: Saturating<i16>) -> Saturating<i16>
Performs the *
operation. Read more
impl<'a> Mul<Saturating<i32>> for &'a Saturating<i32>
type Output = <Saturating<i32> as Mul<Saturating<i32>>>::Output
The resulting type after applying the *
operator.
pub fn mul(
self,
other: Saturating<i32>
) -> <Saturating<i32> as Mul<Saturating<i32>>>::Output
Performs the *
operation. Read more
impl Mul<Saturating<i32>> for Saturating<i32>
type Output = Saturating<i32>
The resulting type after applying the *
operator.
pub fn mul(self, other: Saturating<i32>) -> Saturating<i32>
Performs the *
operation. Read more
impl Mul<Saturating<i64>> for Saturating<i64>
type Output = Saturating<i64>
The resulting type after applying the *
operator.
pub fn mul(self, other: Saturating<i64>) -> Saturating<i64>
Performs the *
operation. Read more
impl<'a> Mul<Saturating<i64>> for &'a Saturating<i64>
type Output = <Saturating<i64> as Mul<Saturating<i64>>>::Output
The resulting type after applying the *
operator.
pub fn mul(
self,
other: Saturating<i64>
) -> <Saturating<i64> as Mul<Saturating<i64>>>::Output
Performs the *
operation. Read more
impl Mul<Saturating<i8>> for Saturating<i8>
type Output = Saturating<i8>
The resulting type after applying the *
operator.
pub fn mul(self, other: Saturating<i8>) -> Saturating<i8>
Performs the *
operation. Read more
impl<'a> Mul<Saturating<i8>> for &'a Saturating<i8>
type Output = <Saturating<i8> as Mul<Saturating<i8>>>::Output
The resulting type after applying the *
operator.
pub fn mul(
self,
other: Saturating<i8>
) -> <Saturating<i8> as Mul<Saturating<i8>>>::Output
Performs the *
operation. Read more
impl Mul<Saturating<isize>> for Saturating<isize>
type Output = Saturating<isize>
The resulting type after applying the *
operator.
pub fn mul(self, other: Saturating<isize>) -> Saturating<isize>
Performs the *
operation. Read more
impl<'a> Mul<Saturating<isize>> for &'a Saturating<isize>
type Output = <Saturating<isize> as Mul<Saturating<isize>>>::Output
The resulting type after applying the *
operator.
pub fn mul(
self,
other: Saturating<isize>
) -> <Saturating<isize> as Mul<Saturating<isize>>>::Output
Performs the *
operation. Read more
impl<'a> Mul<Saturating<u128>> for &'a Saturating<u128>
type Output = <Saturating<u128> as Mul<Saturating<u128>>>::Output
The resulting type after applying the *
operator.
pub fn mul(
self,
other: Saturating<u128>
) -> <Saturating<u128> as Mul<Saturating<u128>>>::Output
Performs the *
operation. Read more
impl Mul<Saturating<u128>> for Saturating<u128>
type Output = Saturating<u128>
The resulting type after applying the *
operator.
pub fn mul(self, other: Saturating<u128>) -> Saturating<u128>
Performs the *
operation. Read more
impl Mul<Saturating<u16>> for Saturating<u16>
type Output = Saturating<u16>
The resulting type after applying the *
operator.
pub fn mul(self, other: Saturating<u16>) -> Saturating<u16>
Performs the *
operation. Read more
impl<'a> Mul<Saturating<u16>> for &'a Saturating<u16>
type Output = <Saturating<u16> as Mul<Saturating<u16>>>::Output
The resulting type after applying the *
operator.
pub fn mul(
self,
other: Saturating<u16>
) -> <Saturating<u16> as Mul<Saturating<u16>>>::Output
Performs the *
operation. Read more
impl<'a> Mul<Saturating<u32>> for &'a Saturating<u32>
type Output = <Saturating<u32> as Mul<Saturating<u32>>>::Output
The resulting type after applying the *
operator.
pub fn mul(
self,
other: Saturating<u32>
) -> <Saturating<u32> as Mul<Saturating<u32>>>::Output
Performs the *
operation. Read more
impl Mul<Saturating<u32>> for Saturating<u32>
type Output = Saturating<u32>
The resulting type after applying the *
operator.
pub fn mul(self, other: Saturating<u32>) -> Saturating<u32>
Performs the *
operation. Read more
impl<'a> Mul<Saturating<u64>> for &'a Saturating<u64>
type Output = <Saturating<u64> as Mul<Saturating<u64>>>::Output
The resulting type after applying the *
operator.
pub fn mul(
self,
other: Saturating<u64>
) -> <Saturating<u64> as Mul<Saturating<u64>>>::Output
Performs the *
operation. Read more
impl Mul<Saturating<u64>> for Saturating<u64>
type Output = Saturating<u64>
The resulting type after applying the *
operator.
pub fn mul(self, other: Saturating<u64>) -> Saturating<u64>
Performs the *
operation. Read more
impl Mul<Saturating<u8>> for Saturating<u8>
type Output = Saturating<u8>
The resulting type after applying the *
operator.
pub fn mul(self, other: Saturating<u8>) -> Saturating<u8>
Performs the *
operation. Read more
impl<'a> Mul<Saturating<u8>> for &'a Saturating<u8>
type Output = <Saturating<u8> as Mul<Saturating<u8>>>::Output
The resulting type after applying the *
operator.
pub fn mul(
self,
other: Saturating<u8>
) -> <Saturating<u8> as Mul<Saturating<u8>>>::Output
Performs the *
operation. Read more
impl<'a> Mul<Saturating<usize>> for &'a Saturating<usize>
type Output = <Saturating<usize> as Mul<Saturating<usize>>>::Output
The resulting type after applying the *
operator.
pub fn mul(
self,
other: Saturating<usize>
) -> <Saturating<usize> as Mul<Saturating<usize>>>::Output
Performs the *
operation. Read more
impl Mul<Saturating<usize>> for Saturating<usize>
type Output = Saturating<usize>
The resulting type after applying the *
operator.
pub fn mul(self, other: Saturating<usize>) -> Saturating<usize>
Performs the *
operation. Read more
impl<'_> MulAssign<&'_ Saturating<i128>> for Saturating<i128>
impl<'_> MulAssign<&'_ Saturating<i16>> for Saturating<i16>
impl<'_> MulAssign<&'_ Saturating<i32>> for Saturating<i32>
impl<'_> MulAssign<&'_ Saturating<i64>> for Saturating<i64>
impl<'_> MulAssign<&'_ Saturating<i8>> for Saturating<i8>
impl<'_> MulAssign<&'_ Saturating<isize>> for Saturating<isize>
impl<'_> MulAssign<&'_ Saturating<u128>> for Saturating<u128>
impl<'_> MulAssign<&'_ Saturating<u16>> for Saturating<u16>
impl<'_> MulAssign<&'_ Saturating<u32>> for Saturating<u32>
impl<'_> MulAssign<&'_ Saturating<u64>> for Saturating<u64>
impl<'_> MulAssign<&'_ Saturating<u8>> for Saturating<u8>
impl<'_> MulAssign<&'_ Saturating<usize>> for Saturating<usize>
impl MulAssign<Saturating<i128>> for Saturating<i128>
impl MulAssign<Saturating<i16>> for Saturating<i16>
impl MulAssign<Saturating<i32>> for Saturating<i32>
impl MulAssign<Saturating<i64>> for Saturating<i64>
impl MulAssign<Saturating<i8>> for Saturating<i8>
impl MulAssign<Saturating<isize>> for Saturating<isize>
impl MulAssign<Saturating<u128>> for Saturating<u128>
impl MulAssign<Saturating<u16>> for Saturating<u16>
impl MulAssign<Saturating<u32>> for Saturating<u32>
impl MulAssign<Saturating<u64>> for Saturating<u64>
impl MulAssign<Saturating<u8>> for Saturating<u8>
impl MulAssign<Saturating<usize>> for Saturating<usize>
impl Neg for Saturating<isize>
type Output = Saturating<isize>
The resulting type after applying the -
operator.
pub fn neg(self) -> Saturating<isize>
Performs the unary -
operation. Read more
impl Neg for Saturating<i16>
type Output = Saturating<i16>
The resulting type after applying the -
operator.
pub fn neg(self) -> Saturating<i16>
Performs the unary -
operation. Read more
impl<'_> Neg for &'_ Saturating<i16>
type Output = <Saturating<i16> as Neg>::Output
The resulting type after applying the -
operator.
pub fn neg(self) -> <Saturating<i16> as Neg>::Output
Performs the unary -
operation. Read more
impl<'_> Neg for &'_ Saturating<i64>
type Output = <Saturating<i64> as Neg>::Output
The resulting type after applying the -
operator.
pub fn neg(self) -> <Saturating<i64> as Neg>::Output
Performs the unary -
operation. Read more
impl Neg for Saturating<i8>
type Output = Saturating<i8>
The resulting type after applying the -
operator.
pub fn neg(self) -> Saturating<i8>
Performs the unary -
operation. Read more
impl<'_> Neg for &'_ Saturating<i32>
type Output = <Saturating<i32> as Neg>::Output
The resulting type after applying the -
operator.
pub fn neg(self) -> <Saturating<i32> as Neg>::Output
Performs the unary -
operation. Read more
impl<'_> Neg for &'_ Saturating<i128>
type Output = <Saturating<i128> as Neg>::Output
The resulting type after applying the -
operator.
pub fn neg(self) -> <Saturating<i128> as Neg>::Output
Performs the unary -
operation. Read more
impl Neg for Saturating<i64>
type Output = Saturating<i64>
The resulting type after applying the -
operator.
pub fn neg(self) -> Saturating<i64>
Performs the unary -
operation. Read more
impl<'_> Neg for &'_ Saturating<i8>
type Output = <Saturating<i8> as Neg>::Output
The resulting type after applying the -
operator.
pub fn neg(self) -> <Saturating<i8> as Neg>::Output
Performs the unary -
operation. Read more
impl Neg for Saturating<i128>
type Output = Saturating<i128>
The resulting type after applying the -
operator.
pub fn neg(self) -> Saturating<i128>
Performs the unary -
operation. Read more
impl Neg for Saturating<i32>
type Output = Saturating<i32>
The resulting type after applying the -
operator.
pub fn neg(self) -> Saturating<i32>
Performs the unary -
operation. Read more
impl<'_> Neg for &'_ Saturating<isize>
type Output = <Saturating<isize> as Neg>::Output
The resulting type after applying the -
operator.
pub fn neg(self) -> <Saturating<isize> as Neg>::Output
Performs the unary -
operation. Read more
impl Not for Saturating<i8>
type Output = Saturating<i8>
The resulting type after applying the !
operator.
pub fn not(self) -> Saturating<i8>
Performs the unary !
operation. Read more
impl<'_> Not for &'_ Saturating<i128>
type Output = <Saturating<i128> as Not>::Output
The resulting type after applying the !
operator.
pub fn not(self) -> <Saturating<i128> as Not>::Output
Performs the unary !
operation. Read more
impl<'_> Not for &'_ Saturating<u8>
type Output = <Saturating<u8> as Not>::Output
The resulting type after applying the !
operator.
pub fn not(self) -> <Saturating<u8> as Not>::Output
Performs the unary !
operation. Read more
impl<'_> Not for &'_ Saturating<isize>
type Output = <Saturating<isize> as Not>::Output
The resulting type after applying the !
operator.
pub fn not(self) -> <Saturating<isize> as Not>::Output
Performs the unary !
operation. Read more
impl<'_> Not for &'_ Saturating<i8>
type Output = <Saturating<i8> as Not>::Output
The resulting type after applying the !
operator.
pub fn not(self) -> <Saturating<i8> as Not>::Output
Performs the unary !
operation. Read more
impl Not for Saturating<isize>
type Output = Saturating<isize>
The resulting type after applying the !
operator.
pub fn not(self) -> Saturating<isize>
Performs the unary !
operation. Read more
impl<'_> Not for &'_ Saturating<u128>
type Output = <Saturating<u128> as Not>::Output
The resulting type after applying the !
operator.
pub fn not(self) -> <Saturating<u128> as Not>::Output
Performs the unary !
operation. Read more
impl Not for Saturating<u16>
type Output = Saturating<u16>
The resulting type after applying the !
operator.
pub fn not(self) -> Saturating<u16>
Performs the unary !
operation. Read more
impl Not for Saturating<i16>
type Output = Saturating<i16>
The resulting type after applying the !
operator.
pub fn not(self) -> Saturating<i16>
Performs the unary !
operation. Read more
impl Not for Saturating<u64>
type Output = Saturating<u64>
The resulting type after applying the !
operator.
pub fn not(self) -> Saturating<u64>
Performs the unary !
operation. Read more
impl Not for Saturating<usize>
type Output = Saturating<usize>
The resulting type after applying the !
operator.
pub fn not(self) -> Saturating<usize>
Performs the unary !
operation. Read more
impl Not for Saturating<i32>
type Output = Saturating<i32>
The resulting type after applying the !
operator.
pub fn not(self) -> Saturating<i32>
Performs the unary !
operation. Read more
impl<'_> Not for &'_ Saturating<i32>
type Output = <Saturating<i32> as Not>::Output
The resulting type after applying the !
operator.
pub fn not(self) -> <Saturating<i32> as Not>::Output
Performs the unary !
operation. Read more
impl<'_> Not for &'_ Saturating<i64>
type Output = <Saturating<i64> as Not>::Output
The resulting type after applying the !
operator.
pub fn not(self) -> <Saturating<i64> as Not>::Output
Performs the unary !
operation. Read more
impl Not for Saturating<u8>
type Output = Saturating<u8>
The resulting type after applying the !
operator.
pub fn not(self) -> Saturating<u8>
Performs the unary !
operation. Read more
impl<'_> Not for &'_ Saturating<i16>
type Output = <Saturating<i16> as Not>::Output
The resulting type after applying the !
operator.
pub fn not(self) -> <Saturating<i16> as Not>::Output
Performs the unary !
operation. Read more
impl<'_> Not for &'_ Saturating<u64>
type Output = <Saturating<u64> as Not>::Output
The resulting type after applying the !
operator.
pub fn not(self) -> <Saturating<u64> as Not>::Output
Performs the unary !
operation. Read more
impl<'_> Not for &'_ Saturating<u32>
type Output = <Saturating<u32> as Not>::Output
The resulting type after applying the !
operator.
pub fn not(self) -> <Saturating<u32> as Not>::Output
Performs the unary !
operation. Read more
impl<'_> Not for &'_ Saturating<u16>
type Output = <Saturating<u16> as Not>::Output
The resulting type after applying the !
operator.
pub fn not(self) -> <Saturating<u16> as Not>::Output
Performs the unary !
operation. Read more
impl Not for Saturating<i64>
type Output = Saturating<i64>
The resulting type after applying the !
operator.
pub fn not(self) -> Saturating<i64>
Performs the unary !
operation. Read more
impl Not for Saturating<i128>
type Output = Saturating<i128>
The resulting type after applying the !
operator.
pub fn not(self) -> Saturating<i128>
Performs the unary !
operation. Read more
impl Not for Saturating<u32>
type Output = Saturating<u32>
The resulting type after applying the !
operator.
pub fn not(self) -> Saturating<u32>
Performs the unary !
operation. Read more
impl<'_> Not for &'_ Saturating<usize>
type Output = <Saturating<usize> as Not>::Output
The resulting type after applying the !
operator.
pub fn not(self) -> <Saturating<usize> as Not>::Output
Performs the unary !
operation. Read more
impl Not for Saturating<u128>
type Output = Saturating<u128>
The resulting type after applying the !
operator.
pub fn not(self) -> Saturating<u128>
Performs the unary !
operation. Read more
pub fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
Formats the value using the given formatter.
pub fn cmp(&self, other: &Saturating<T>) -> Ordering
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
fn clamp(self, min: Self, max: Self) -> Self
Restrict a value to a certain interval. Read more
pub fn eq(&self, other: &Saturating<T>) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
pub fn ne(&self, other: &Saturating<T>) -> bool
This method tests for !=
.
impl<T> PartialOrd<Saturating<T>> for Saturating<T> where
T: PartialOrd<T>,
pub fn partial_cmp(&self, other: &Saturating<T>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, other: &Rhs) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, other: &Rhs) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl<'_> Rem<&'_ Saturating<i128>> for Saturating<i128>
type Output = <Saturating<i128> as Rem<Saturating<i128>>>::Output
The resulting type after applying the %
operator.
pub fn rem(
self,
other: &Saturating<i128>
) -> <Saturating<i128> as Rem<Saturating<i128>>>::Output
Performs the %
operation. Read more
impl<'_, '_> Rem<&'_ Saturating<i128>> for &'_ Saturating<i128>
type Output = <Saturating<i128> as Rem<Saturating<i128>>>::Output
The resulting type after applying the %
operator.
pub fn rem(
self,
other: &Saturating<i128>
) -> <Saturating<i128> as Rem<Saturating<i128>>>::Output
Performs the %
operation. Read more
impl<'_, '_> Rem<&'_ Saturating<i16>> for &'_ Saturating<i16>
type Output = <Saturating<i16> as Rem<Saturating<i16>>>::Output
The resulting type after applying the %
operator.
pub fn rem(
self,
other: &Saturating<i16>
) -> <Saturating<i16> as Rem<Saturating<i16>>>::Output
Performs the %
operation. Read more
impl<'_> Rem<&'_ Saturating<i16>> for Saturating<i16>
type Output = <Saturating<i16> as Rem<Saturating<i16>>>::Output
The resulting type after applying the %
operator.
pub fn rem(
self,
other: &Saturating<i16>
) -> <Saturating<i16> as Rem<Saturating<i16>>>::Output
Performs the %
operation. Read more
impl<'_, '_> Rem<&'_ Saturating<i32>> for &'_ Saturating<i32>
type Output = <Saturating<i32> as Rem<Saturating<i32>>>::Output
The resulting type after applying the %
operator.
pub fn rem(
self,
other: &Saturating<i32>
) -> <Saturating<i32> as Rem<Saturating<i32>>>::Output
Performs the %
operation. Read more
impl<'_> Rem<&'_ Saturating<i32>> for Saturating<i32>
type Output = <Saturating<i32> as Rem<Saturating<i32>>>::Output
The resulting type after applying the %
operator.
pub fn rem(
self,
other: &Saturating<i32>
) -> <Saturating<i32> as Rem<Saturating<i32>>>::Output
Performs the %
operation. Read more
impl<'_, '_> Rem<&'_ Saturating<i64>> for &'_ Saturating<i64>
type Output = <Saturating<i64> as Rem<Saturating<i64>>>::Output
The resulting type after applying the %
operator.
pub fn rem(
self,
other: &Saturating<i64>
) -> <Saturating<i64> as Rem<Saturating<i64>>>::Output
Performs the %
operation. Read more
impl<'_> Rem<&'_ Saturating<i64>> for Saturating<i64>
type Output = <Saturating<i64> as Rem<Saturating<i64>>>::Output
The resulting type after applying the %
operator.
pub fn rem(
self,
other: &Saturating<i64>
) -> <Saturating<i64> as Rem<Saturating<i64>>>::Output
Performs the %
operation. Read more
impl<'_> Rem<&'_ Saturating<i8>> for Saturating<i8>
type Output = <Saturating<i8> as Rem<Saturating<i8>>>::Output
The resulting type after applying the %
operator.
pub fn rem(
self,
other: &Saturating<i8>
) -> <Saturating<i8> as Rem<Saturating<i8>>>::Output
Performs the %
operation. Read more
impl<'_, '_> Rem<&'_ Saturating<i8>> for &'_ Saturating<i8>
type Output = <Saturating<i8> as Rem<Saturating<i8>>>::Output
The resulting type after applying the %
operator.
pub fn rem(
self,
other: &Saturating<i8>
) -> <Saturating<i8> as Rem<Saturating<i8>>>::Output
Performs the %
operation. Read more
impl<'_, '_> Rem<&'_ Saturating<isize>> for &'_ Saturating<isize>
type Output = <Saturating<isize> as Rem<Saturating<isize>>>::Output
The resulting type after applying the %
operator.
pub fn rem(
self,
other: &Saturating<isize>
) -> <Saturating<isize> as Rem<Saturating<isize>>>::Output
Performs the %
operation. Read more
impl<'_> Rem<&'_ Saturating<isize>> for Saturating<isize>
type Output = <Saturating<isize> as Rem<Saturating<isize>>>::Output
The resulting type after applying the %
operator.
pub fn rem(
self,
other: &Saturating<isize>
) -> <Saturating<isize> as Rem<Saturating<isize>>>::Output
Performs the %
operation. Read more
impl<'_, '_> Rem<&'_ Saturating<u128>> for &'_ Saturating<u128>
type Output = <Saturating<u128> as Rem<Saturating<u128>>>::Output
The resulting type after applying the %
operator.
pub fn rem(
self,
other: &Saturating<u128>
) -> <Saturating<u128> as Rem<Saturating<u128>>>::Output
Performs the %
operation. Read more
impl<'_> Rem<&'_ Saturating<u128>> for Saturating<u128>
type Output = <Saturating<u128> as Rem<Saturating<u128>>>::Output
The resulting type after applying the %
operator.
pub fn rem(
self,
other: &Saturating<u128>
) -> <Saturating<u128> as Rem<Saturating<u128>>>::Output
Performs the %
operation. Read more
impl<'_> Rem<&'_ Saturating<u16>> for Saturating<u16>
type Output = <Saturating<u16> as Rem<Saturating<u16>>>::Output
The resulting type after applying the %
operator.
pub fn rem(
self,
other: &Saturating<u16>
) -> <Saturating<u16> as Rem<Saturating<u16>>>::Output
Performs the %
operation. Read more
impl<'_, '_> Rem<&'_ Saturating<u16>> for &'_ Saturating<u16>
type Output = <Saturating<u16> as Rem<Saturating<u16>>>::Output
The resulting type after applying the %
operator.
pub fn rem(
self,
other: &Saturating<u16>
) -> <Saturating<u16> as Rem<Saturating<u16>>>::Output
Performs the %
operation. Read more
impl<'_> Rem<&'_ Saturating<u32>> for Saturating<u32>
type Output = <Saturating<u32> as Rem<Saturating<u32>>>::Output
The resulting type after applying the %
operator.
pub fn rem(
self,
other: &Saturating<u32>
) -> <Saturating<u32> as Rem<Saturating<u32>>>::Output
Performs the %
operation. Read more
impl<'_, '_> Rem<&'_ Saturating<u32>> for &'_ Saturating<u32>
type Output = <Saturating<u32> as Rem<Saturating<u32>>>::Output
The resulting type after applying the %
operator.
pub fn rem(
self,
other: &Saturating<u32>
) -> <Saturating<u32> as Rem<Saturating<u32>>>::Output
Performs the %
operation. Read more
impl<'_, '_> Rem<&'_ Saturating<u64>> for &'_ Saturating<u64>
type Output = <Saturating<u64> as Rem<Saturating<u64>>>::Output
The resulting type after applying the %
operator.
pub fn rem(
self,
other: &Saturating<u64>
) -> <Saturating<u64> as Rem<Saturating<u64>>>::Output
Performs the %
operation. Read more
impl<'_> Rem<&'_ Saturating<u64>> for Saturating<u64>
type Output = <Saturating<u64> as Rem<Saturating<u64>>>::Output
The resulting type after applying the %
operator.
pub fn rem(
self,
other: &Saturating<u64>
) -> <Saturating<u64> as Rem<Saturating<u64>>>::Output
Performs the %
operation. Read more
impl<'_> Rem<&'_ Saturating<u8>> for Saturating<u8>
type Output = <Saturating<u8> as Rem<Saturating<u8>>>::Output
The resulting type after applying the %
operator.
pub fn rem(
self,
other: &Saturating<u8>
) -> <Saturating<u8> as Rem<Saturating<u8>>>::Output
Performs the %
operation. Read more
impl<'_, '_> Rem<&'_ Saturating<u8>> for &'_ Saturating<u8>
type Output = <Saturating<u8> as Rem<Saturating<u8>>>::Output
The resulting type after applying the %
operator.
pub fn rem(
self,
other: &Saturating<u8>
) -> <Saturating<u8> as Rem<Saturating<u8>>>::Output
Performs the %
operation. Read more
impl<'_> Rem<&'_ Saturating<usize>> for Saturating<usize>
type Output = <Saturating<usize> as Rem<Saturating<usize>>>::Output
The resulting type after applying the %
operator.
pub fn rem(
self,
other: &Saturating<usize>
) -> <Saturating<usize> as Rem<Saturating<usize>>>::Output
Performs the %
operation. Read more
impl<'_, '_> Rem<&'_ Saturating<usize>> for &'_ Saturating<usize>
type Output = <Saturating<usize> as Rem<Saturating<usize>>>::Output
The resulting type after applying the %
operator.
pub fn rem(
self,
other: &Saturating<usize>
) -> <Saturating<usize> as Rem<Saturating<usize>>>::Output
Performs the %
operation. Read more
impl<'a> Rem<Saturating<i128>> for &'a Saturating<i128>
type Output = <Saturating<i128> as Rem<Saturating<i128>>>::Output
The resulting type after applying the %
operator.
pub fn rem(
self,
other: Saturating<i128>
) -> <Saturating<i128> as Rem<Saturating<i128>>>::Output
Performs the %
operation. Read more
impl Rem<Saturating<i128>> for Saturating<i128>
type Output = Saturating<i128>
The resulting type after applying the %
operator.
pub fn rem(self, other: Saturating<i128>) -> Saturating<i128>
Performs the %
operation. Read more
impl<'a> Rem<Saturating<i16>> for &'a Saturating<i16>
type Output = <Saturating<i16> as Rem<Saturating<i16>>>::Output
The resulting type after applying the %
operator.
pub fn rem(
self,
other: Saturating<i16>
) -> <Saturating<i16> as Rem<Saturating<i16>>>::Output
Performs the %
operation. Read more
impl Rem<Saturating<i16>> for Saturating<i16>
type Output = Saturating<i16>
The resulting type after applying the %
operator.
pub fn rem(self, other: Saturating<i16>) -> Saturating<i16>
Performs the %
operation. Read more
impl Rem<Saturating<i32>> for Saturating<i32>
type Output = Saturating<i32>
The resulting type after applying the %
operator.
pub fn rem(self, other: Saturating<i32>) -> Saturating<i32>
Performs the %
operation. Read more
impl<'a> Rem<Saturating<i32>> for &'a Saturating<i32>
type Output = <Saturating<i32> as Rem<Saturating<i32>>>::Output
The resulting type after applying the %
operator.
pub fn rem(
self,
other: Saturating<i32>
) -> <Saturating<i32> as Rem<Saturating<i32>>>::Output
Performs the %
operation. Read more
impl<'a> Rem<Saturating<i64>> for &'a Saturating<i64>
type Output = <Saturating<i64> as Rem<Saturating<i64>>>::Output
The resulting type after applying the %
operator.
pub fn rem(
self,
other: Saturating<i64>
) -> <Saturating<i64> as Rem<Saturating<i64>>>::Output
Performs the %
operation. Read more
impl Rem<Saturating<i64>> for Saturating<i64>
type Output = Saturating<i64>
The resulting type after applying the %
operator.
pub fn rem(self, other: Saturating<i64>) -> Saturating<i64>
Performs the %
operation. Read more
impl<'a> Rem<Saturating<i8>> for &'a Saturating<i8>
type Output = <Saturating<i8> as Rem<Saturating<i8>>>::Output
The resulting type after applying the %
operator.
pub fn rem(
self,
other: Saturating<i8>
) -> <Saturating<i8> as Rem<Saturating<i8>>>::Output
Performs the %
operation. Read more
impl Rem<Saturating<i8>> for Saturating<i8>
type Output = Saturating<i8>
The resulting type after applying the %
operator.
pub fn rem(self, other: Saturating<i8>) -> Saturating<i8>
Performs the %
operation. Read more
impl Rem<Saturating<isize>> for Saturating<isize>
type Output = Saturating<isize>
The resulting type after applying the %
operator.
pub fn rem(self, other: Saturating<isize>) -> Saturating<isize>
Performs the %
operation. Read more
impl<'a> Rem<Saturating<isize>> for &'a Saturating<isize>
type Output = <Saturating<isize> as Rem<Saturating<isize>>>::Output
The resulting type after applying the %
operator.
pub fn rem(
self,
other: Saturating<isize>
) -> <Saturating<isize> as Rem<Saturating<isize>>>::Output
Performs the %
operation. Read more
impl Rem<Saturating<u128>> for Saturating<u128>
type Output = Saturating<u128>
The resulting type after applying the %
operator.
pub fn rem(self, other: Saturating<u128>) -> Saturating<u128>
Performs the %
operation. Read more
impl<'a> Rem<Saturating<u128>> for &'a Saturating<u128>
type Output = <Saturating<u128> as Rem<Saturating<u128>>>::Output
The resulting type after applying the %
operator.
pub fn rem(
self,
other: Saturating<u128>
) -> <Saturating<u128> as Rem<Saturating<u128>>>::Output
Performs the %
operation. Read more
impl Rem<Saturating<u16>> for Saturating<u16>
type Output = Saturating<u16>
The resulting type after applying the %
operator.
pub fn rem(self, other: Saturating<u16>) -> Saturating<u16>
Performs the %
operation. Read more
impl<'a> Rem<Saturating<u16>> for &'a Saturating<u16>
type Output = <Saturating<u16> as Rem<Saturating<u16>>>::Output
The resulting type after applying the %
operator.
pub fn rem(
self,
other: Saturating<u16>
) -> <Saturating<u16> as Rem<Saturating<u16>>>::Output
Performs the %
operation. Read more
impl Rem<Saturating<u32>> for Saturating<u32>
type Output = Saturating<u32>
The resulting type after applying the %
operator.
pub fn rem(self, other: Saturating<u32>) -> Saturating<u32>
Performs the %
operation. Read more
impl<'a> Rem<Saturating<u32>> for &'a Saturating<u32>
type Output = <Saturating<u32> as Rem<Saturating<u32>>>::Output
The resulting type after applying the %
operator.
pub fn rem(
self,
other: Saturating<u32>
) -> <Saturating<u32> as Rem<Saturating<u32>>>::Output
Performs the %
operation. Read more
impl Rem<Saturating<u64>> for Saturating<u64>
type Output = Saturating<u64>
The resulting type after applying the %
operator.
pub fn rem(self, other: Saturating<u64>) -> Saturating<u64>
Performs the %
operation. Read more
impl<'a> Rem<Saturating<u64>> for &'a Saturating<u64>
type Output = <Saturating<u64> as Rem<Saturating<u64>>>::Output
The resulting type after applying the %
operator.
pub fn rem(
self,
other: Saturating<u64>
) -> <Saturating<u64> as Rem<Saturating<u64>>>::Output
Performs the %
operation. Read more
impl Rem<Saturating<u8>> for Saturating<u8>
type Output = Saturating<u8>
The resulting type after applying the %
operator.
pub fn rem(self, other: Saturating<u8>) -> Saturating<u8>
Performs the %
operation. Read more
impl<'a> Rem<Saturating<u8>> for &'a Saturating<u8>
type Output = <Saturating<u8> as Rem<Saturating<u8>>>::Output
The resulting type after applying the %
operator.
pub fn rem(
self,
other: Saturating<u8>
) -> <Saturating<u8> as Rem<Saturating<u8>>>::Output
Performs the %
operation. Read more
impl<'a> Rem<Saturating<usize>> for &'a Saturating<usize>
type Output = <Saturating<usize> as Rem<Saturating<usize>>>::Output
The resulting type after applying the %
operator.
pub fn rem(
self,
other: Saturating<usize>
) -> <Saturating<usize> as Rem<Saturating<usize>>>::Output
Performs the %
operation. Read more
impl Rem<Saturating<usize>> for Saturating<usize>
type Output = Saturating<usize>
The resulting type after applying the %
operator.
pub fn rem(self, other: Saturating<usize>) -> Saturating<usize>
Performs the %
operation. Read more
impl<'_> RemAssign<&'_ Saturating<i128>> for Saturating<i128>
impl<'_> RemAssign<&'_ Saturating<i16>> for Saturating<i16>
impl<'_> RemAssign<&'_ Saturating<i32>> for Saturating<i32>
impl<'_> RemAssign<&'_ Saturating<i64>> for Saturating<i64>
impl<'_> RemAssign<&'_ Saturating<i8>> for Saturating<i8>
impl<'_> RemAssign<&'_ Saturating<isize>> for Saturating<isize>
impl<'_> RemAssign<&'_ Saturating<u128>> for Saturating<u128>
impl<'_> RemAssign<&'_ Saturating<u16>> for Saturating<u16>
impl<'_> RemAssign<&'_ Saturating<u32>> for Saturating<u32>
impl<'_> RemAssign<&'_ Saturating<u64>> for Saturating<u64>
impl<'_> RemAssign<&'_ Saturating<u8>> for Saturating<u8>
impl<'_> RemAssign<&'_ Saturating<usize>> for Saturating<usize>
impl RemAssign<Saturating<i128>> for Saturating<i128>
impl RemAssign<Saturating<i16>> for Saturating<i16>
impl RemAssign<Saturating<i32>> for Saturating<i32>
impl RemAssign<Saturating<i64>> for Saturating<i64>
impl RemAssign<Saturating<i8>> for Saturating<i8>
impl RemAssign<Saturating<isize>> for Saturating<isize>
impl RemAssign<Saturating<u128>> for Saturating<u128>
impl RemAssign<Saturating<u16>> for Saturating<u16>
impl RemAssign<Saturating<u32>> for Saturating<u32>
impl RemAssign<Saturating<u64>> for Saturating<u64>
impl RemAssign<Saturating<u8>> for Saturating<u8>
impl RemAssign<Saturating<usize>> for Saturating<usize>
impl<'_, '_> Shl<&'_ usize> for &'_ Saturating<u128>
type Output = <Saturating<u128> as Shl<usize>>::Output
The resulting type after applying the <<
operator.
pub fn shl(self, other: &usize) -> <Saturating<u128> as Shl<usize>>::Output
Performs the <<
operation. Read more
impl<'_, '_> Shl<&'_ usize> for &'_ Saturating<i32>
type Output = <Saturating<i32> as Shl<usize>>::Output
The resulting type after applying the <<
operator.
pub fn shl(self, other: &usize) -> <Saturating<i32> as Shl<usize>>::Output
Performs the <<
operation. Read more
impl<'_> Shl<&'_ usize> for Saturating<u8>
type Output = <Saturating<u8> as Shl<usize>>::Output
The resulting type after applying the <<
operator.
pub fn shl(self, other: &usize) -> <Saturating<u8> as Shl<usize>>::Output
Performs the <<
operation. Read more
impl<'_> Shl<&'_ usize> for Saturating<i64>
type Output = <Saturating<i64> as Shl<usize>>::Output
The resulting type after applying the <<
operator.
pub fn shl(self, other: &usize) -> <Saturating<i64> as Shl<usize>>::Output
Performs the <<
operation. Read more
impl<'_> Shl<&'_ usize> for Saturating<isize>
type Output = <Saturating<isize> as Shl<usize>>::Output
The resulting type after applying the <<
operator.
pub fn shl(self, other: &usize) -> <Saturating<isize> as Shl<usize>>::Output
Performs the <<
operation. Read more
impl<'_, '_> Shl<&'_ usize> for &'_ Saturating<u8>
type Output = <Saturating<u8> as Shl<usize>>::Output
The resulting type after applying the <<
operator.
pub fn shl(self, other: &usize) -> <Saturating<u8> as Shl<usize>>::Output
Performs the <<
operation. Read more
impl<'_> Shl<&'_ usize> for Saturating<i32>
type Output = <Saturating<i32> as Shl<usize>>::Output
The resulting type after applying the <<
operator.
pub fn shl(self, other: &usize) -> <Saturating<i32> as Shl<usize>>::Output
Performs the <<
operation. Read more
impl<'_, '_> Shl<&'_ usize> for &'_ Saturating<u64>
type Output = <Saturating<u64> as Shl<usize>>::Output
The resulting type after applying the <<
operator.
pub fn shl(self, other: &usize) -> <Saturating<u64> as Shl<usize>>::Output
Performs the <<
operation. Read more
impl<'_, '_> Shl<&'_ usize> for &'_ Saturating<i64>
type Output = <Saturating<i64> as Shl<usize>>::Output
The resulting type after applying the <<
operator.
pub fn shl(self, other: &usize) -> <Saturating<i64> as Shl<usize>>::Output
Performs the <<
operation. Read more
impl<'_> Shl<&'_ usize> for Saturating<i16>
type Output = <Saturating<i16> as Shl<usize>>::Output
The resulting type after applying the <<
operator.
pub fn shl(self, other: &usize) -> <Saturating<i16> as Shl<usize>>::Output
Performs the <<
operation. Read more
impl<'_, '_> Shl<&'_ usize> for &'_ Saturating<u32>
type Output = <Saturating<u32> as Shl<usize>>::Output
The resulting type after applying the <<
operator.
pub fn shl(self, other: &usize) -> <Saturating<u32> as Shl<usize>>::Output
Performs the <<
operation. Read more
impl<'_> Shl<&'_ usize> for Saturating<usize>
type Output = <Saturating<usize> as Shl<usize>>::Output
The resulting type after applying the <<
operator.
pub fn shl(self, other: &usize) -> <Saturating<usize> as Shl<usize>>::Output
Performs the <<
operation. Read more
impl<'_, '_> Shl<&'_ usize> for &'_ Saturating<u16>
type Output = <Saturating<u16> as Shl<usize>>::Output
The resulting type after applying the <<
operator.
pub fn shl(self, other: &usize) -> <Saturating<u16> as Shl<usize>>::Output
Performs the <<
operation. Read more
impl<'_> Shl<&'_ usize> for Saturating<u16>
type Output = <Saturating<u16> as Shl<usize>>::Output
The resulting type after applying the <<
operator.
pub fn shl(self, other: &usize) -> <Saturating<u16> as Shl<usize>>::Output
Performs the <<
operation. Read more
impl<'_> Shl<&'_ usize> for Saturating<u64>
type Output = <Saturating<u64> as Shl<usize>>::Output
The resulting type after applying the <<
operator.
pub fn shl(self, other: &usize) -> <Saturating<u64> as Shl<usize>>::Output
Performs the <<
operation. Read more
impl<'_> Shl<&'_ usize> for Saturating<u128>
type Output = <Saturating<u128> as Shl<usize>>::Output
The resulting type after applying the <<
operator.
pub fn shl(self, other: &usize) -> <Saturating<u128> as Shl<usize>>::Output
Performs the <<
operation. Read more
impl<'_, '_> Shl<&'_ usize> for &'_ Saturating<isize>
type Output = <Saturating<isize> as Shl<usize>>::Output
The resulting type after applying the <<
operator.
pub fn shl(self, other: &usize) -> <Saturating<isize> as Shl<usize>>::Output
Performs the <<
operation. Read more
impl<'_> Shl<&'_ usize> for Saturating<i8>
type Output = <Saturating<i8> as Shl<usize>>::Output
The resulting type after applying the <<
operator.
pub fn shl(self, other: &usize) -> <Saturating<i8> as Shl<usize>>::Output
Performs the <<
operation. Read more
impl<'_, '_> Shl<&'_ usize> for &'_ Saturating<i128>
type Output = <Saturating<i128> as Shl<usize>>::Output
The resulting type after applying the <<
operator.
pub fn shl(self, other: &usize) -> <Saturating<i128> as Shl<usize>>::Output
Performs the <<
operation. Read more
impl<'_, '_> Shl<&'_ usize> for &'_ Saturating<usize>
type Output = <Saturating<usize> as Shl<usize>>::Output
The resulting type after applying the <<
operator.
pub fn shl(self, other: &usize) -> <Saturating<usize> as Shl<usize>>::Output
Performs the <<
operation. Read more
impl<'_, '_> Shl<&'_ usize> for &'_ Saturating<i8>
type Output = <Saturating<i8> as Shl<usize>>::Output
The resulting type after applying the <<
operator.
pub fn shl(self, other: &usize) -> <Saturating<i8> as Shl<usize>>::Output
Performs the <<
operation. Read more
impl<'_, '_> Shl<&'_ usize> for &'_ Saturating<i16>
type Output = <Saturating<i16> as Shl<usize>>::Output
The resulting type after applying the <<
operator.
pub fn shl(self, other: &usize) -> <Saturating<i16> as Shl<usize>>::Output
Performs the <<
operation. Read more
impl<'_> Shl<&'_ usize> for Saturating<u32>
type Output = <Saturating<u32> as Shl<usize>>::Output
The resulting type after applying the <<
operator.
pub fn shl(self, other: &usize) -> <Saturating<u32> as Shl<usize>>::Output
Performs the <<
operation. Read more
impl<'_> Shl<&'_ usize> for Saturating<i128>
type Output = <Saturating<i128> as Shl<usize>>::Output
The resulting type after applying the <<
operator.
pub fn shl(self, other: &usize) -> <Saturating<i128> as Shl<usize>>::Output
Performs the <<
operation. Read more
impl Shl<usize> for Saturating<u32>
type Output = Saturating<u32>
The resulting type after applying the <<
operator.
pub fn shl(self, other: usize) -> Saturating<u32>
Performs the <<
operation. Read more
impl<'a> Shl<usize> for &'a Saturating<u128>
type Output = <Saturating<u128> as Shl<usize>>::Output
The resulting type after applying the <<
operator.
pub fn shl(self, other: usize) -> <Saturating<u128> as Shl<usize>>::Output
Performs the <<
operation. Read more
impl Shl<usize> for Saturating<i64>
type Output = Saturating<i64>
The resulting type after applying the <<
operator.
pub fn shl(self, other: usize) -> Saturating<i64>
Performs the <<
operation. Read more
impl<'a> Shl<usize> for &'a Saturating<u32>
type Output = <Saturating<u32> as Shl<usize>>::Output
The resulting type after applying the <<
operator.
pub fn shl(self, other: usize) -> <Saturating<u32> as Shl<usize>>::Output
Performs the <<
operation. Read more
impl Shl<usize> for Saturating<u16>
type Output = Saturating<u16>
The resulting type after applying the <<
operator.
pub fn shl(self, other: usize) -> Saturating<u16>
Performs the <<
operation. Read more
impl Shl<usize> for Saturating<i128>
type Output = Saturating<i128>
The resulting type after applying the <<
operator.
pub fn shl(self, other: usize) -> Saturating<i128>
Performs the <<
operation. Read more
impl<'a> Shl<usize> for &'a Saturating<u64>
type Output = <Saturating<u64> as Shl<usize>>::Output
The resulting type after applying the <<
operator.
pub fn shl(self, other: usize) -> <Saturating<u64> as Shl<usize>>::Output
Performs the <<
operation. Read more
impl Shl<usize> for Saturating<u8>
type Output = Saturating<u8>
The resulting type after applying the <<
operator.
pub fn shl(self, other: usize) -> Saturating<u8>
Performs the <<
operation. Read more
impl<'a> Shl<usize> for &'a Saturating<usize>
type Output = <Saturating<usize> as Shl<usize>>::Output
The resulting type after applying the <<
operator.
pub fn shl(self, other: usize) -> <Saturating<usize> as Shl<usize>>::Output
Performs the <<
operation. Read more
impl Shl<usize> for Saturating<i16>
type Output = Saturating<i16>
The resulting type after applying the <<
operator.
pub fn shl(self, other: usize) -> Saturating<i16>
Performs the <<
operation. Read more
impl Shl<usize> for Saturating<isize>
type Output = Saturating<isize>
The resulting type after applying the <<
operator.
pub fn shl(self, other: usize) -> Saturating<isize>
Performs the <<
operation. Read more
impl<'a> Shl<usize> for &'a Saturating<i8>
type Output = <Saturating<i8> as Shl<usize>>::Output
The resulting type after applying the <<
operator.
pub fn shl(self, other: usize) -> <Saturating<i8> as Shl<usize>>::Output
Performs the <<
operation. Read more
impl<'a> Shl<usize> for &'a Saturating<u16>
type Output = <Saturating<u16> as Shl<usize>>::Output
The resulting type after applying the <<
operator.
pub fn shl(self, other: usize) -> <Saturating<u16> as Shl<usize>>::Output
Performs the <<
operation. Read more
impl Shl<usize> for Saturating<i8>
type Output = Saturating<i8>
The resulting type after applying the <<
operator.
pub fn shl(self, other: usize) -> Saturating<i8>
Performs the <<
operation. Read more
impl Shl<usize> for Saturating<i32>
type Output = Saturating<i32>
The resulting type after applying the <<
operator.
pub fn shl(self, other: usize) -> Saturating<i32>
Performs the <<
operation. Read more
impl Shl<usize> for Saturating<usize>
type Output = Saturating<usize>
The resulting type after applying the <<
operator.
pub fn shl(self, other: usize) -> Saturating<usize>
Performs the <<
operation. Read more
impl<'a> Shl<usize> for &'a Saturating<u8>
type Output = <Saturating<u8> as Shl<usize>>::Output
The resulting type after applying the <<
operator.
pub fn shl(self, other: usize) -> <Saturating<u8> as Shl<usize>>::Output
Performs the <<
operation. Read more
impl Shl<usize> for Saturating<u128>
type Output = Saturating<u128>
The resulting type after applying the <<
operator.
pub fn shl(self, other: usize) -> Saturating<u128>
Performs the <<
operation. Read more
impl<'a> Shl<usize> for &'a Saturating<i32>
type Output = <Saturating<i32> as Shl<usize>>::Output
The resulting type after applying the <<
operator.
pub fn shl(self, other: usize) -> <Saturating<i32> as Shl<usize>>::Output
Performs the <<
operation. Read more
impl Shl<usize> for Saturating<u64>
type Output = Saturating<u64>
The resulting type after applying the <<
operator.
pub fn shl(self, other: usize) -> Saturating<u64>
Performs the <<
operation. Read more
impl<'a> Shl<usize> for &'a Saturating<i64>
type Output = <Saturating<i64> as Shl<usize>>::Output
The resulting type after applying the <<
operator.
pub fn shl(self, other: usize) -> <Saturating<i64> as Shl<usize>>::Output
Performs the <<
operation. Read more
impl<'a> Shl<usize> for &'a Saturating<i16>
type Output = <Saturating<i16> as Shl<usize>>::Output
The resulting type after applying the <<
operator.
pub fn shl(self, other: usize) -> <Saturating<i16> as Shl<usize>>::Output
Performs the <<
operation. Read more
impl<'a> Shl<usize> for &'a Saturating<i128>
type Output = <Saturating<i128> as Shl<usize>>::Output
The resulting type after applying the <<
operator.
pub fn shl(self, other: usize) -> <Saturating<i128> as Shl<usize>>::Output
Performs the <<
operation. Read more
impl<'a> Shl<usize> for &'a Saturating<isize>
type Output = <Saturating<isize> as Shl<usize>>::Output
The resulting type after applying the <<
operator.
pub fn shl(self, other: usize) -> <Saturating<isize> as Shl<usize>>::Output
Performs the <<
operation. Read more
impl<'_> ShlAssign<&'_ usize> for Saturating<usize>
impl<'_> ShlAssign<&'_ usize> for Saturating<isize>
impl<'_> ShlAssign<&'_ usize> for Saturating<i64>
impl<'_> ShlAssign<&'_ usize> for Saturating<i16>
impl<'_> ShlAssign<&'_ usize> for Saturating<u64>
impl<'_> ShlAssign<&'_ usize> for Saturating<u16>
impl<'_> ShlAssign<&'_ usize> for Saturating<i32>
impl<'_> ShlAssign<&'_ usize> for Saturating<i8>
impl<'_> ShlAssign<&'_ usize> for Saturating<u32>
impl<'_> ShlAssign<&'_ usize> for Saturating<u128>
impl<'_> ShlAssign<&'_ usize> for Saturating<u8>
impl<'_> ShlAssign<&'_ usize> for Saturating<i128>
impl ShlAssign<usize> for Saturating<isize>
impl ShlAssign<usize> for Saturating<u8>
impl ShlAssign<usize> for Saturating<u32>
impl ShlAssign<usize> for Saturating<i8>
impl ShlAssign<usize> for Saturating<i128>
impl ShlAssign<usize> for Saturating<usize>
impl ShlAssign<usize> for Saturating<i16>
impl ShlAssign<usize> for Saturating<u64>
impl ShlAssign<usize> for Saturating<u128>
impl ShlAssign<usize> for Saturating<i32>
impl ShlAssign<usize> for Saturating<u16>
impl ShlAssign<usize> for Saturating<i64>
impl<'_> Shr<&'_ usize> for Saturating<u16>
type Output = <Saturating<u16> as Shr<usize>>::Output
The resulting type after applying the >>
operator.
pub fn shr(self, other: &usize) -> <Saturating<u16> as Shr<usize>>::Output
Performs the >>
operation. Read more
impl<'_> Shr<&'_ usize> for Saturating<u8>
type Output = <Saturating<u8> as Shr<usize>>::Output
The resulting type after applying the >>
operator.
pub fn shr(self, other: &usize) -> <Saturating<u8> as Shr<usize>>::Output
Performs the >>
operation. Read more
impl<'_, '_> Shr<&'_ usize> for &'_ Saturating<isize>
type Output = <Saturating<isize> as Shr<usize>>::Output
The resulting type after applying the >>
operator.
pub fn shr(self, other: &usize) -> <Saturating<isize> as Shr<usize>>::Output
Performs the >>
operation. Read more
impl<'_, '_> Shr<&'_ usize> for &'_ Saturating<i32>
type Output = <Saturating<i32> as Shr<usize>>::Output
The resulting type after applying the >>
operator.
pub fn shr(self, other: &usize) -> <Saturating<i32> as Shr<usize>>::Output
Performs the >>
operation. Read more
impl<'_, '_> Shr<&'_ usize> for &'_ Saturating<u64>
type Output = <Saturating<u64> as Shr<usize>>::Output
The resulting type after applying the >>
operator.
pub fn shr(self, other: &usize) -> <Saturating<u64> as Shr<usize>>::Output
Performs the >>
operation. Read more
impl<'_, '_> Shr<&'_ usize> for &'_ Saturating<i16>
type Output = <Saturating<i16> as Shr<usize>>::Output
The resulting type after applying the >>
operator.
pub fn shr(self, other: &usize) -> <Saturating<i16> as Shr<usize>>::Output
Performs the >>
operation. Read more
impl<'_, '_> Shr<&'_ usize> for &'_ Saturating<i64>
type Output = <Saturating<i64> as Shr<usize>>::Output
The resulting type after applying the >>
operator.
pub fn shr(self, other: &usize) -> <Saturating<i64> as Shr<usize>>::Output
Performs the >>
operation. Read more
impl<'_> Shr<&'_ usize> for Saturating<i8>
type Output = <Saturating<i8> as Shr<usize>>::Output
The resulting type after applying the >>
operator.
pub fn shr(self, other: &usize) -> <Saturating<i8> as Shr<usize>>::Output
Performs the >>
operation. Read more
impl<'_, '_> Shr<&'_ usize> for &'_ Saturating<u16>
type Output = <Saturating<u16> as Shr<usize>>::Output
The resulting type after applying the >>
operator.
pub fn shr(self, other: &usize) -> <Saturating<u16> as Shr<usize>>::Output
Performs the >>
operation. Read more
impl<'_, '_> Shr<&'_ usize> for &'_ Saturating<i8>
type Output = <Saturating<i8> as Shr<usize>>::Output
The resulting type after applying the >>
operator.
pub fn shr(self, other: &usize) -> <Saturating<i8> as Shr<usize>>::Output
Performs the >>
operation. Read more
impl<'_> Shr<&'_ usize> for Saturating<i32>
type Output = <Saturating<i32> as Shr<usize>>::Output
The resulting type after applying the >>
operator.
pub fn shr(self, other: &usize) -> <Saturating<i32> as Shr<usize>>::Output
Performs the >>
operation. Read more
impl<'_, '_> Shr<&'_ usize> for &'_ Saturating<u128>
type Output = <Saturating<u128> as Shr<usize>>::Output
The resulting type after applying the >>
operator.
pub fn shr(self, other: &usize) -> <Saturating<u128> as Shr<usize>>::Output
Performs the >>
operation. Read more
impl<'_> Shr<&'_ usize> for Saturating<u64>
type Output = <Saturating<u64> as Shr<usize>>::Output
The resulting type after applying the >>
operator.
pub fn shr(self, other: &usize) -> <Saturating<u64> as Shr<usize>>::Output
Performs the >>
operation. Read more
impl<'_, '_> Shr<&'_ usize> for &'_ Saturating<u32>
type Output = <Saturating<u32> as Shr<usize>>::Output
The resulting type after applying the >>
operator.
pub fn shr(self, other: &usize) -> <Saturating<u32> as Shr<usize>>::Output
Performs the >>
operation. Read more
impl<'_, '_> Shr<&'_ usize> for &'_ Saturating<i128>
type Output = <Saturating<i128> as Shr<usize>>::Output
The resulting type after applying the >>
operator.
pub fn shr(self, other: &usize) -> <Saturating<i128> as Shr<usize>>::Output
Performs the >>
operation. Read more
impl<'_> Shr<&'_ usize> for Saturating<isize>
type Output = <Saturating<isize> as Shr<usize>>::Output
The resulting type after applying the >>
operator.
pub fn shr(self, other: &usize) -> <Saturating<isize> as Shr<usize>>::Output
Performs the >>
operation. Read more
impl<'_, '_> Shr<&'_ usize> for &'_ Saturating<usize>
type Output = <Saturating<usize> as Shr<usize>>::Output
The resulting type after applying the >>
operator.
pub fn shr(self, other: &usize) -> <Saturating<usize> as Shr<usize>>::Output
Performs the >>
operation. Read more
impl<'_> Shr<&'_ usize> for Saturating<i128>
type Output = <Saturating<i128> as Shr<usize>>::Output
The resulting type after applying the >>
operator.
pub fn shr(self, other: &usize) -> <Saturating<i128> as Shr<usize>>::Output
Performs the >>
operation. Read more
impl<'_> Shr<&'_ usize> for Saturating<u32>
type Output = <Saturating<u32> as Shr<usize>>::Output
The resulting type after applying the >>
operator.
pub fn shr(self, other: &usize) -> <Saturating<u32> as Shr<usize>>::Output
Performs the >>
operation. Read more
impl<'_> Shr<&'_ usize> for Saturating<i64>
type Output = <Saturating<i64> as Shr<usize>>::Output
The resulting type after applying the >>
operator.
pub fn shr(self, other: &usize) -> <Saturating<i64> as Shr<usize>>::Output
Performs the >>
operation. Read more
impl<'_, '_> Shr<&'_ usize> for &'_ Saturating<u8>
type Output = <Saturating<u8> as Shr<usize>>::Output
The resulting type after applying the >>
operator.
pub fn shr(self, other: &usize) -> <Saturating<u8> as Shr<usize>>::Output
Performs the >>
operation. Read more
impl<'_> Shr<&'_ usize> for Saturating<u128>
type Output = <Saturating<u128> as Shr<usize>>::Output
The resulting type after applying the >>
operator.
pub fn shr(self, other: &usize) -> <Saturating<u128> as Shr<usize>>::Output
Performs the >>
operation. Read more
impl<'_> Shr<&'_ usize> for Saturating<i16>
type Output = <Saturating<i16> as Shr<usize>>::Output
The resulting type after applying the >>
operator.
pub fn shr(self, other: &usize) -> <Saturating<i16> as Shr<usize>>::Output
Performs the >>
operation. Read more
impl<'_> Shr<&'_ usize> for Saturating<usize>
type Output = <Saturating<usize> as Shr<usize>>::Output
The resulting type after applying the >>
operator.
pub fn shr(self, other: &usize) -> <Saturating<usize> as Shr<usize>>::Output
Performs the >>
operation. Read more
impl Shr<usize> for Saturating<usize>
type Output = Saturating<usize>
The resulting type after applying the >>
operator.
pub fn shr(self, other: usize) -> Saturating<usize>
Performs the >>
operation. Read more
impl Shr<usize> for Saturating<u16>
type Output = Saturating<u16>
The resulting type after applying the >>
operator.
pub fn shr(self, other: usize) -> Saturating<u16>
Performs the >>
operation. Read more
impl<'a> Shr<usize> for &'a Saturating<i128>
type Output = <Saturating<i128> as Shr<usize>>::Output
The resulting type after applying the >>
operator.
pub fn shr(self, other: usize) -> <Saturating<i128> as Shr<usize>>::Output
Performs the >>
operation. Read more
impl<'a> Shr<usize> for &'a Saturating<u128>
type Output = <Saturating<u128> as Shr<usize>>::Output
The resulting type after applying the >>
operator.
pub fn shr(self, other: usize) -> <Saturating<u128> as Shr<usize>>::Output
Performs the >>
operation. Read more
impl<'a> Shr<usize> for &'a Saturating<i8>
type Output = <Saturating<i8> as Shr<usize>>::Output
The resulting type after applying the >>
operator.
pub fn shr(self, other: usize) -> <Saturating<i8> as Shr<usize>>::Output
Performs the >>
operation. Read more
impl<'a> Shr<usize> for &'a Saturating<u64>
type Output = <Saturating<u64> as Shr<usize>>::Output
The resulting type after applying the >>
operator.
pub fn shr(self, other: usize) -> <Saturating<u64> as Shr<usize>>::Output
Performs the >>
operation. Read more
impl Shr<usize> for Saturating<u32>
type Output = Saturating<u32>
The resulting type after applying the >>
operator.
pub fn shr(self, other: usize) -> Saturating<u32>
Performs the >>
operation. Read more
impl Shr<usize> for Saturating<isize>
type Output = Saturating<isize>
The resulting type after applying the >>
operator.
pub fn shr(self, other: usize) -> Saturating<isize>
Performs the >>
operation. Read more
impl<'a> Shr<usize> for &'a Saturating<i64>
type Output = <Saturating<i64> as Shr<usize>>::Output
The resulting type after applying the >>
operator.
pub fn shr(self, other: usize) -> <Saturating<i64> as Shr<usize>>::Output
Performs the >>
operation. Read more
impl Shr<usize> for Saturating<u64>
type Output = Saturating<u64>
The resulting type after applying the >>
operator.
pub fn shr(self, other: usize) -> Saturating<u64>
Performs the >>
operation. Read more
impl Shr<usize> for Saturating<i16>
type Output = Saturating<i16>
The resulting type after applying the >>
operator.
pub fn shr(self, other: usize) -> Saturating<i16>
Performs the >>
operation. Read more
impl<'a> Shr<usize> for &'a Saturating<usize>
type Output = <Saturating<usize> as Shr<usize>>::Output
The resulting type after applying the >>
operator.
pub fn shr(self, other: usize) -> <Saturating<usize> as Shr<usize>>::Output
Performs the >>
operation. Read more
impl<'a> Shr<usize> for &'a Saturating<u8>
type Output = <Saturating<u8> as Shr<usize>>::Output
The resulting type after applying the >>
operator.
pub fn shr(self, other: usize) -> <Saturating<u8> as Shr<usize>>::Output
Performs the >>
operation. Read more
impl Shr<usize> for Saturating<i8>
type Output = Saturating<i8>
The resulting type after applying the >>
operator.
pub fn shr(self, other: usize) -> Saturating<i8>
Performs the >>
operation. Read more
impl Shr<usize> for Saturating<i32>
type Output = Saturating<i32>
The resulting type after applying the >>
operator.
pub fn shr(self, other: usize) -> Saturating<i32>
Performs the >>
operation. Read more
impl Shr<usize> for Saturating<i64>
type Output = Saturating<i64>
The resulting type after applying the >>
operator.
pub fn shr(self, other: usize) -> Saturating<i64>
Performs the >>
operation. Read more
impl<'a> Shr<usize> for &'a Saturating<i32>
type Output = <Saturating<i32> as Shr<usize>>::Output
The resulting type after applying the >>
operator.
pub fn shr(self, other: usize) -> <Saturating<i32> as Shr<usize>>::Output
Performs the >>
operation. Read more
impl<'a> Shr<usize> for &'a Saturating<u16>
type Output = <Saturating<u16> as Shr<usize>>::Output
The resulting type after applying the >>
operator.
pub fn shr(self, other: usize) -> <Saturating<u16> as Shr<usize>>::Output
Performs the >>
operation. Read more
impl<'a> Shr<usize> for &'a Saturating<isize>
type Output = <Saturating<isize> as Shr<usize>>::Output
The resulting type after applying the >>
operator.
pub fn shr(self, other: usize) -> <Saturating<isize> as Shr<usize>>::Output
Performs the >>
operation. Read more
impl<'a> Shr<usize> for &'a Saturating<u32>
type Output = <Saturating<u32> as Shr<usize>>::Output
The resulting type after applying the >>
operator.
pub fn shr(self, other: usize) -> <Saturating<u32> as Shr<usize>>::Output
Performs the >>
operation. Read more
impl<'a> Shr<usize> for &'a Saturating<i16>
type Output = <Saturating<i16> as Shr<usize>>::Output
The resulting type after applying the >>
operator.
pub fn shr(self, other: usize) -> <Saturating<i16> as Shr<usize>>::Output
Performs the >>
operation. Read more
impl Shr<usize> for Saturating<i128>
type Output = Saturating<i128>
The resulting type after applying the >>
operator.
pub fn shr(self, other: usize) -> Saturating<i128>
Performs the >>
operation. Read more
impl Shr<usize> for Saturating<u8>
type Output = Saturating<u8>
The resulting type after applying the >>
operator.
pub fn shr(self, other: usize) -> Saturating<u8>
Performs the >>
operation. Read more
impl Shr<usize> for Saturating<u128>
type Output = Saturating<u128>
The resulting type after applying the >>
operator.
pub fn shr(self, other: usize) -> Saturating<u128>
Performs the >>
operation. Read more
impl<'_> ShrAssign<&'_ usize> for Saturating<i32>
impl<'_> ShrAssign<&'_ usize> for Saturating<i128>
impl<'_> ShrAssign<&'_ usize> for Saturating<i8>
impl<'_> ShrAssign<&'_ usize> for Saturating<u8>
impl<'_> ShrAssign<&'_ usize> for Saturating<isize>
impl<'_> ShrAssign<&'_ usize> for Saturating<u32>
impl<'_> ShrAssign<&'_ usize> for Saturating<i64>
impl<'_> ShrAssign<&'_ usize> for Saturating<usize>
impl<'_> ShrAssign<&'_ usize> for Saturating<u64>
impl<'_> ShrAssign<&'_ usize> for Saturating<i16>
impl<'_> ShrAssign<&'_ usize> for Saturating<u128>
impl<'_> ShrAssign<&'_ usize> for Saturating<u16>
impl ShrAssign<usize> for Saturating<i8>
impl ShrAssign<usize> for Saturating<isize>
impl ShrAssign<usize> for Saturating<u128>
impl ShrAssign<usize> for Saturating<u64>
impl ShrAssign<usize> for Saturating<u16>
impl ShrAssign<usize> for Saturating<usize>
impl ShrAssign<usize> for Saturating<i16>
impl ShrAssign<usize> for Saturating<i64>
impl ShrAssign<usize> for Saturating<u32>
impl ShrAssign<usize> for Saturating<u8>
impl ShrAssign<usize> for Saturating<i128>
impl ShrAssign<usize> for Saturating<i32>
impl<'_> Sub<&'_ Saturating<i128>> for Saturating<i128>
type Output = <Saturating<i128> as Sub<Saturating<i128>>>::Output
The resulting type after applying the -
operator.
pub fn sub(
self,
other: &Saturating<i128>
) -> <Saturating<i128> as Sub<Saturating<i128>>>::Output
Performs the -
operation. Read more
impl<'_, '_> Sub<&'_ Saturating<i128>> for &'_ Saturating<i128>
type Output = <Saturating<i128> as Sub<Saturating<i128>>>::Output
The resulting type after applying the -
operator.
pub fn sub(
self,
other: &Saturating<i128>
) -> <Saturating<i128> as Sub<Saturating<i128>>>::Output
Performs the -
operation. Read more
impl<'_, '_> Sub<&'_ Saturating<i16>> for &'_ Saturating<i16>
type Output = <Saturating<i16> as Sub<Saturating<i16>>>::Output
The resulting type after applying the -
operator.
pub fn sub(
self,
other: &Saturating<i16>
) -> <Saturating<i16> as Sub<Saturating<i16>>>::Output
Performs the -
operation. Read more
impl<'_> Sub<&'_ Saturating<i16>> for Saturating<i16>
type Output = <Saturating<i16> as Sub<Saturating<i16>>>::Output
The resulting type after applying the -
operator.
pub fn sub(
self,
other: &Saturating<i16>
) -> <Saturating<i16> as Sub<Saturating<i16>>>::Output
Performs the -
operation. Read more
impl<'_> Sub<&'_ Saturating<i32>> for Saturating<i32>
type Output = <Saturating<i32> as Sub<Saturating<i32>>>::Output
The resulting type after applying the -
operator.
pub fn sub(
self,
other: &Saturating<i32>
) -> <Saturating<i32> as Sub<Saturating<i32>>>::Output
Performs the -
operation. Read more
impl<'_, '_> Sub<&'_ Saturating<i32>> for &'_ Saturating<i32>
type Output = <Saturating<i32> as Sub<Saturating<i32>>>::Output
The resulting type after applying the -
operator.
pub fn sub(
self,
other: &Saturating<i32>
) -> <Saturating<i32> as Sub<Saturating<i32>>>::Output
Performs the -
operation. Read more
impl<'_> Sub<&'_ Saturating<i64>> for Saturating<i64>
type Output = <Saturating<i64> as Sub<Saturating<i64>>>::Output
The resulting type after applying the -
operator.
pub fn sub(
self,
other: &Saturating<i64>
) -> <Saturating<i64> as Sub<Saturating<i64>>>::Output
Performs the -
operation. Read more
impl<'_, '_> Sub<&'_ Saturating<i64>> for &'_ Saturating<i64>
type Output = <Saturating<i64> as Sub<Saturating<i64>>>::Output
The resulting type after applying the -
operator.
pub fn sub(
self,
other: &Saturating<i64>
) -> <Saturating<i64> as Sub<Saturating<i64>>>::Output
Performs the -
operation. Read more
impl<'_> Sub<&'_ Saturating<i8>> for Saturating<i8>
type Output = <Saturating<i8> as Sub<Saturating<i8>>>::Output
The resulting type after applying the -
operator.
pub fn sub(
self,
other: &Saturating<i8>
) -> <Saturating<i8> as Sub<Saturating<i8>>>::Output
Performs the -
operation. Read more
impl<'_, '_> Sub<&'_ Saturating<i8>> for &'_ Saturating<i8>
type Output = <Saturating<i8> as Sub<Saturating<i8>>>::Output
The resulting type after applying the -
operator.
pub fn sub(
self,
other: &Saturating<i8>
) -> <Saturating<i8> as Sub<Saturating<i8>>>::Output
Performs the -
operation. Read more
impl<'_, '_> Sub<&'_ Saturating<isize>> for &'_ Saturating<isize>
type Output = <Saturating<isize> as Sub<Saturating<isize>>>::Output
The resulting type after applying the -
operator.
pub fn sub(
self,
other: &Saturating<isize>
) -> <Saturating<isize> as Sub<Saturating<isize>>>::Output
Performs the -
operation. Read more
impl<'_> Sub<&'_ Saturating<isize>> for Saturating<isize>
type Output = <Saturating<isize> as Sub<Saturating<isize>>>::Output
The resulting type after applying the -
operator.
pub fn sub(
self,
other: &Saturating<isize>
) -> <Saturating<isize> as Sub<Saturating<isize>>>::Output
Performs the -
operation. Read more
impl<'_, '_> Sub<&'_ Saturating<u128>> for &'_ Saturating<u128>
type Output = <Saturating<u128> as Sub<Saturating<u128>>>::Output
The resulting type after applying the -
operator.
pub fn sub(
self,
other: &Saturating<u128>
) -> <Saturating<u128> as Sub<Saturating<u128>>>::Output
Performs the -
operation. Read more
impl<'_> Sub<&'_ Saturating<u128>> for Saturating<u128>
type Output = <Saturating<u128> as Sub<Saturating<u128>>>::Output
The resulting type after applying the -
operator.
pub fn sub(
self,
other: &Saturating<u128>
) -> <Saturating<u128> as Sub<Saturating<u128>>>::Output
Performs the -
operation. Read more
impl<'_, '_> Sub<&'_ Saturating<u16>> for &'_ Saturating<u16>
type Output = <Saturating<u16> as Sub<Saturating<u16>>>::Output
The resulting type after applying the -
operator.
pub fn sub(
self,
other: &Saturating<u16>
) -> <Saturating<u16> as Sub<Saturating<u16>>>::Output
Performs the -
operation. Read more
impl<'_> Sub<&'_ Saturating<u16>> for Saturating<u16>
type Output = <Saturating<u16> as Sub<Saturating<u16>>>::Output
The resulting type after applying the -
operator.
pub fn sub(
self,
other: &Saturating<u16>
) -> <Saturating<u16> as Sub<Saturating<u16>>>::Output
Performs the -
operation. Read more
impl<'_> Sub<&'_ Saturating<u32>> for Saturating<u32>
type Output = <Saturating<u32> as Sub<Saturating<u32>>>::Output
The resulting type after applying the -
operator.
pub fn sub(
self,
other: &Saturating<u32>
) -> <Saturating<u32> as Sub<Saturating<u32>>>::Output
Performs the -
operation. Read more
impl<'_, '_> Sub<&'_ Saturating<u32>> for &'_ Saturating<u32>
type Output = <Saturating<u32> as Sub<Saturating<u32>>>::Output
The resulting type after applying the -
operator.
pub fn sub(
self,
other: &Saturating<u32>
) -> <Saturating<u32> as Sub<Saturating<u32>>>::Output
Performs the -
operation. Read more
impl<'_, '_> Sub<&'_ Saturating<u64>> for &'_ Saturating<u64>
type Output = <Saturating<u64> as Sub<Saturating<u64>>>::Output
The resulting type after applying the -
operator.
pub fn sub(
self,
other: &Saturating<u64>
) -> <Saturating<u64> as Sub<Saturating<u64>>>::Output
Performs the -
operation. Read more
impl<'_> Sub<&'_ Saturating<u64>> for Saturating<u64>
type Output = <Saturating<u64> as Sub<Saturating<u64>>>::Output
The resulting type after applying the -
operator.
pub fn sub(
self,
other: &Saturating<u64>
) -> <Saturating<u64> as Sub<Saturating<u64>>>::Output
Performs the -
operation. Read more
impl<'_> Sub<&'_ Saturating<u8>> for Saturating<u8>
type Output = <Saturating<u8> as Sub<Saturating<u8>>>::Output
The resulting type after applying the -
operator.
pub fn sub(
self,
other: &Saturating<u8>
) -> <Saturating<u8> as Sub<Saturating<u8>>>::Output
Performs the -
operation. Read more
impl<'_, '_> Sub<&'_ Saturating<u8>> for &'_ Saturating<u8>
type Output = <Saturating<u8> as Sub<Saturating<u8>>>::Output
The resulting type after applying the -
operator.
pub fn sub(
self,
other: &Saturating<u8>
) -> <Saturating<u8> as Sub<Saturating<u8>>>::Output
Performs the -
operation. Read more
impl<'_, '_> Sub<&'_ Saturating<usize>> for &'_ Saturating<usize>
type Output = <Saturating<usize> as Sub<Saturating<usize>>>::Output
The resulting type after applying the -
operator.
pub fn sub(
self,
other: &Saturating<usize>
) -> <Saturating<usize> as Sub<Saturating<usize>>>::Output
Performs the -
operation. Read more
impl<'_> Sub<&'_ Saturating<usize>> for Saturating<usize>
type Output = <Saturating<usize> as Sub<Saturating<usize>>>::Output
The resulting type after applying the -
operator.
pub fn sub(
self,
other: &Saturating<usize>
) -> <Saturating<usize> as Sub<Saturating<usize>>>::Output
Performs the -
operation. Read more
impl Sub<Saturating<i128>> for Saturating<i128>
type Output = Saturating<i128>
The resulting type after applying the -
operator.
pub fn sub(self, other: Saturating<i128>) -> Saturating<i128>
Performs the -
operation. Read more
impl<'a> Sub<Saturating<i128>> for &'a Saturating<i128>
type Output = <Saturating<i128> as Sub<Saturating<i128>>>::Output
The resulting type after applying the -
operator.
pub fn sub(
self,
other: Saturating<i128>
) -> <Saturating<i128> as Sub<Saturating<i128>>>::Output
Performs the -
operation. Read more
impl<'a> Sub<Saturating<i16>> for &'a Saturating<i16>
type Output = <Saturating<i16> as Sub<Saturating<i16>>>::Output
The resulting type after applying the -
operator.
pub fn sub(
self,
other: Saturating<i16>
) -> <Saturating<i16> as Sub<Saturating<i16>>>::Output
Performs the -
operation. Read more
impl Sub<Saturating<i16>> for Saturating<i16>
type Output = Saturating<i16>
The resulting type after applying the -
operator.
pub fn sub(self, other: Saturating<i16>) -> Saturating<i16>
Performs the -
operation. Read more
impl<'a> Sub<Saturating<i32>> for &'a Saturating<i32>
type Output = <Saturating<i32> as Sub<Saturating<i32>>>::Output
The resulting type after applying the -
operator.
pub fn sub(
self,
other: Saturating<i32>
) -> <Saturating<i32> as Sub<Saturating<i32>>>::Output
Performs the -
operation. Read more
impl Sub<Saturating<i32>> for Saturating<i32>
type Output = Saturating<i32>
The resulting type after applying the -
operator.
pub fn sub(self, other: Saturating<i32>) -> Saturating<i32>
Performs the -
operation. Read more
impl Sub<Saturating<i64>> for Saturating<i64>
type Output = Saturating<i64>
The resulting type after applying the -
operator.
pub fn sub(self, other: Saturating<i64>) -> Saturating<i64>
Performs the -
operation. Read more
impl<'a> Sub<Saturating<i64>> for &'a Saturating<i64>
type Output = <Saturating<i64> as Sub<Saturating<i64>>>::Output
The resulting type after applying the -
operator.
pub fn sub(
self,
other: Saturating<i64>
) -> <Saturating<i64> as Sub<Saturating<i64>>>::Output
Performs the -
operation. Read more
impl<'a> Sub<Saturating<i8>> for &'a Saturating<i8>
type Output = <Saturating<i8> as Sub<Saturating<i8>>>::Output
The resulting type after applying the -
operator.
pub fn sub(
self,
other: Saturating<i8>
) -> <Saturating<i8> as Sub<Saturating<i8>>>::Output
Performs the -
operation. Read more
impl Sub<Saturating<i8>> for Saturating<i8>
type Output = Saturating<i8>
The resulting type after applying the -
operator.
pub fn sub(self, other: Saturating<i8>) -> Saturating<i8>
Performs the -
operation. Read more
impl<'a> Sub<Saturating<isize>> for &'a Saturating<isize>
type Output = <Saturating<isize> as Sub<Saturating<isize>>>::Output
The resulting type after applying the -
operator.
pub fn sub(
self,
other: Saturating<isize>
) -> <Saturating<isize> as Sub<Saturating<isize>>>::Output
Performs the -
operation. Read more
impl Sub<Saturating<isize>> for Saturating<isize>
type Output = Saturating<isize>
The resulting type after applying the -
operator.
pub fn sub(self, other: Saturating<isize>) -> Saturating<isize>
Performs the -
operation. Read more
impl Sub<Saturating<u128>> for Saturating<u128>
type Output = Saturating<u128>
The resulting type after applying the -
operator.
pub fn sub(self, other: Saturating<u128>) -> Saturating<u128>
Performs the -
operation. Read more
impl<'a> Sub<Saturating<u128>> for &'a Saturating<u128>
type Output = <Saturating<u128> as Sub<Saturating<u128>>>::Output
The resulting type after applying the -
operator.
pub fn sub(
self,
other: Saturating<u128>
) -> <Saturating<u128> as Sub<Saturating<u128>>>::Output
Performs the -
operation. Read more
impl Sub<Saturating<u16>> for Saturating<u16>
type Output = Saturating<u16>
The resulting type after applying the -
operator.
pub fn sub(self, other: Saturating<u16>) -> Saturating<u16>
Performs the -
operation. Read more
impl<'a> Sub<Saturating<u16>> for &'a Saturating<u16>
type Output = <Saturating<u16> as Sub<Saturating<u16>>>::Output
The resulting type after applying the -
operator.
pub fn sub(
self,
other: Saturating<u16>
) -> <Saturating<u16> as Sub<Saturating<u16>>>::Output
Performs the -
operation. Read more
impl<'a> Sub<Saturating<u32>> for &'a Saturating<u32>
type Output = <Saturating<u32> as Sub<Saturating<u32>>>::Output
The resulting type after applying the -
operator.
pub fn sub(
self,
other: Saturating<u32>
) -> <Saturating<u32> as Sub<Saturating<u32>>>::Output
Performs the -
operation. Read more
impl Sub<Saturating<u32>> for Saturating<u32>
type Output = Saturating<u32>
The resulting type after applying the -
operator.
pub fn sub(self, other: Saturating<u32>) -> Saturating<u32>
Performs the -
operation. Read more
impl Sub<Saturating<u64>> for Saturating<u64>
type Output = Saturating<u64>
The resulting type after applying the -
operator.
pub fn sub(self, other: Saturating<u64>) -> Saturating<u64>
Performs the -
operation. Read more
impl<'a> Sub<Saturating<u64>> for &'a Saturating<u64>
type Output = <Saturating<u64> as Sub<Saturating<u64>>>::Output
The resulting type after applying the -
operator.
pub fn sub(
self,
other: Saturating<u64>
) -> <Saturating<u64> as Sub<Saturating<u64>>>::Output
Performs the -
operation. Read more
impl Sub<Saturating<u8>> for Saturating<u8>
type Output = Saturating<u8>
The resulting type after applying the -
operator.
pub fn sub(self, other: Saturating<u8>) -> Saturating<u8>
Performs the -
operation. Read more
impl<'a> Sub<Saturating<u8>> for &'a Saturating<u8>
type Output = <Saturating<u8> as Sub<Saturating<u8>>>::Output
The resulting type after applying the -
operator.
pub fn sub(
self,
other: Saturating<u8>
) -> <Saturating<u8> as Sub<Saturating<u8>>>::Output
Performs the -
operation. Read more
impl Sub<Saturating<usize>> for Saturating<usize>
type Output = Saturating<usize>
The resulting type after applying the -
operator.
pub fn sub(self, other: Saturating<usize>) -> Saturating<usize>
Performs the -
operation. Read more
impl<'a> Sub<Saturating<usize>> for &'a Saturating<usize>
type Output = <Saturating<usize> as Sub<Saturating<usize>>>::Output
The resulting type after applying the -
operator.
pub fn sub(
self,
other: Saturating<usize>
) -> <Saturating<usize> as Sub<Saturating<usize>>>::Output
Performs the -
operation. Read more
impl<'_> SubAssign<&'_ Saturating<i128>> for Saturating<i128>
impl<'_> SubAssign<&'_ Saturating<i16>> for Saturating<i16>
impl<'_> SubAssign<&'_ Saturating<i32>> for Saturating<i32>
impl<'_> SubAssign<&'_ Saturating<i64>> for Saturating<i64>
impl<'_> SubAssign<&'_ Saturating<i8>> for Saturating<i8>
impl<'_> SubAssign<&'_ Saturating<isize>> for Saturating<isize>
impl<'_> SubAssign<&'_ Saturating<u128>> for Saturating<u128>
impl<'_> SubAssign<&'_ Saturating<u16>> for Saturating<u16>
impl<'_> SubAssign<&'_ Saturating<u32>> for Saturating<u32>
impl<'_> SubAssign<&'_ Saturating<u64>> for Saturating<u64>
impl<'_> SubAssign<&'_ Saturating<u8>> for Saturating<u8>
impl<'_> SubAssign<&'_ Saturating<usize>> for Saturating<usize>
impl SubAssign<Saturating<i128>> for Saturating<i128>
impl SubAssign<Saturating<i16>> for Saturating<i16>
impl SubAssign<Saturating<i32>> for Saturating<i32>
impl SubAssign<Saturating<i64>> for Saturating<i64>
impl SubAssign<Saturating<i8>> for Saturating<i8>
impl SubAssign<Saturating<isize>> for Saturating<isize>
impl SubAssign<Saturating<u128>> for Saturating<u128>
impl SubAssign<Saturating<u16>> for Saturating<u16>
impl SubAssign<Saturating<u32>> for Saturating<u32>
impl SubAssign<Saturating<u64>> for Saturating<u64>
impl SubAssign<Saturating<u8>> for Saturating<u8>
impl SubAssign<Saturating<usize>> for Saturating<usize>
pub fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
Formats the value using the given formatter.
impl<T> StructuralEq for Saturating<T>
impl<T> StructuralPartialEq for Saturating<T>
Auto Trait Implementations
impl<T> RefUnwindSafe for Saturating<T> where
T: RefUnwindSafe,
impl<T> Send for Saturating<T> where
T: Send,
impl<T> Sync for Saturating<T> where
T: Sync,
impl<T> Unpin for Saturating<T> where
T: Unpin,
impl<T> UnwindSafe for Saturating<T> where
T: UnwindSafe,
Blanket Implementations
impl<T> From<T> for T
pub fn from(t: T) -> T
Performs the conversion.
pub fn into(self) -> U
Performs the conversion.
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
#41263)recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
Performs the conversion.
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
Performs the conversion.
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/num/struct.Saturating.html