Expand description
The pointer-sized unsigned integer type.
The size of this primitive is how many bytes it takes to reference any location in memory. For example, on a 32 bit target, this is 4 bytes and on a 64 bit target, this is 8 bytes.
Implementations
impl usize
source
impl usize
sourcepub fn from_str_radix(src: &str, radix: u32) -> Result<Self, ParseIntError>
source
pub fn from_str_radix(src: &str, radix: u32) -> Result<Self, ParseIntError>
sourceConverts a string slice in a given base to an integer.
The string is expected to be an optional + sign
followed by digits.
Leading and trailing whitespace represent an error.
Digits are a subset of these characters, depending on radix:
0-9a-zA-Z
Panics
This function panics if radix is not in the range from 2 to 36.
Examples
Basic usage:
assert_eq!(usize::from_str_radix("A", 16), Ok(10));Runpub const fn count_ones(self) -> u32
const: 1.32.0 · source
pub const fn count_ones(self) -> u32
const: 1.32.0 · sourcepub const fn count_zeros(self) -> u32
const: 1.32.0 · source
pub const fn count_zeros(self) -> u32
const: 1.32.0 · sourcepub const fn leading_zeros(self) -> u32
const: 1.32.0 · source
pub const fn leading_zeros(self) -> u32
const: 1.32.0 · sourcepub const fn trailing_zeros(self) -> u32
const: 1.32.0 · source
pub const fn trailing_zeros(self) -> u32
const: 1.32.0 · sourcepub const fn leading_ones(self) -> u32
1.46.0 (const: 1.46.0) · source
pub const fn leading_ones(self) -> u32
1.46.0 (const: 1.46.0) · sourcepub const fn trailing_ones(self) -> u32
1.46.0 (const: 1.46.0) · source
pub const fn trailing_ones(self) -> u32
1.46.0 (const: 1.46.0) · sourcepub const fn rotate_left(self, n: u32) -> Self
const: 1.32.0 · source
pub const fn rotate_left(self, n: u32) -> Self
const: 1.32.0 · sourcepub const fn rotate_right(self, n: u32) -> Self
const: 1.32.0 · source
pub const fn rotate_right(self, n: u32) -> Self
const: 1.32.0 · sourceShifts the bits to the right by a specified amount, n,
wrapping the truncated bits to the beginning of the resulting
integer.
Please note this isn’t the same operation as the >> shifting operator!
Examples
Basic usage:
let n = 0x6e10aausize;
let m = 0xaa00000000006e1;
assert_eq!(n.rotate_right(12), m);Runpub const fn swap_bytes(self) -> Self
const: 1.32.0 · source
pub const fn swap_bytes(self) -> Self
const: 1.32.0 · sourcepub const fn reverse_bits(self) -> Self
1.37.0 (const: 1.37.0) · source
pub const fn reverse_bits(self) -> Self
1.37.0 (const: 1.37.0) · sourceReverses the order of bits in the integer. The least significant bit becomes the most significant bit, second least-significant bit becomes second most-significant bit, etc.
Examples
Basic usage:
let n = 0x1234567890123456usize;
let m = n.reverse_bits();
assert_eq!(m, 0x6a2c48091e6a2c48);
assert_eq!(0, 0usize.reverse_bits());Runpub const fn from_be(x: Self) -> Self
const: 1.32.0 · source
pub const fn from_be(x: Self) -> Self
const: 1.32.0 · sourceConverts 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:
let n = 0x1Ausize;
if cfg!(target_endian = "big") {
assert_eq!(usize::from_be(n), n)
} else {
assert_eq!(usize::from_be(n), n.swap_bytes())
}Runpub const fn from_le(x: Self) -> Self
const: 1.32.0 · source
pub const fn from_le(x: Self) -> Self
const: 1.32.0 · sourceConverts 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:
let n = 0x1Ausize;
if cfg!(target_endian = "little") {
assert_eq!(usize::from_le(n), n)
} else {
assert_eq!(usize::from_le(n), n.swap_bytes())
}Runpub const fn checked_add(self, rhs: Self) -> Option<Self>
const: 1.47.0 · source
pub const fn checked_add(self, rhs: Self) -> Option<Self>
const: 1.47.0 · sourcepub unsafe fn unchecked_add(self, rhs: Self) -> Self
const: unstable · source
pub unsafe fn unchecked_add(self, rhs: Self) -> Self
const: unstable · sourceUnchecked integer addition. Computes self + rhs, assuming overflow
cannot occur.
Safety
This results in undefined behavior when
self + rhs > usize::MAX or self + rhs < usize::MIN,
i.e. when checked_add would return None.
pub fn checked_add_signed(self, rhs: isize) -> Option<Self>
const: unstable · source
pub fn checked_add_signed(self, rhs: isize) -> Option<Self>
const: unstable · sourcepub const fn checked_sub(self, rhs: Self) -> Option<Self>
const: 1.47.0 · source
pub const fn checked_sub(self, rhs: Self) -> Option<Self>
const: 1.47.0 · sourcepub unsafe fn unchecked_sub(self, rhs: Self) -> Self
const: unstable · source
pub unsafe fn unchecked_sub(self, rhs: Self) -> Self
const: unstable · sourceUnchecked integer subtraction. Computes self - rhs, assuming overflow
cannot occur.
Safety
This results in undefined behavior when
self - rhs > usize::MAX or self - rhs < usize::MIN,
i.e. when checked_sub would return None.
pub const fn checked_mul(self, rhs: Self) -> Option<Self>
const: 1.47.0 · source
pub const fn checked_mul(self, rhs: Self) -> Option<Self>
const: 1.47.0 · sourcepub unsafe fn unchecked_mul(self, rhs: Self) -> Self
const: unstable · source
pub unsafe fn unchecked_mul(self, rhs: Self) -> Self
const: unstable · sourceUnchecked integer multiplication. Computes self * rhs, assuming overflow
cannot occur.
Safety
This results in undefined behavior when
self * rhs > usize::MAX or self * rhs < usize::MIN,
i.e. when checked_mul would return None.
pub const fn checked_div(self, rhs: Self) -> Option<Self>
const: 1.52.0 · source
pub const fn checked_div(self, rhs: Self) -> Option<Self>
const: 1.52.0 · sourcepub const fn checked_div_euclid(self, rhs: Self) -> Option<Self>
1.38.0 (const: 1.52.0) · source
pub const fn checked_div_euclid(self, rhs: Self) -> Option<Self>
1.38.0 (const: 1.52.0) · sourcepub const fn checked_rem(self, rhs: Self) -> Option<Self>
1.7.0 (const: 1.52.0) · source
pub const fn checked_rem(self, rhs: Self) -> Option<Self>
1.7.0 (const: 1.52.0) · sourcepub const fn checked_rem_euclid(self, rhs: Self) -> Option<Self>
1.38.0 (const: 1.52.0) · source
pub const fn checked_rem_euclid(self, rhs: Self) -> Option<Self>
1.38.0 (const: 1.52.0) · sourcepub const fn log(self, base: Self) -> u32
source
pub const fn log(self, base: Self) -> u32
sourceReturns the logarithm of the number with respect to an arbitrary base, rounded down.
This method might not be optimized owing to implementation details;
log2 can produce results more efficiently for base 2, and log10
can produce results more efficiently for base 10.
Panics
When the number is zero, or if the base is not at least 2; it panics in debug mode and the return value is 0 in release mode.
Examples
#![feature(int_log)]
assert_eq!(5usize.log(5), 1);Runpub const fn checked_log(self, base: Self) -> Option<u32>
source
pub const fn checked_log(self, base: Self) -> Option<u32>
sourceReturns the logarithm of the number with respect to an arbitrary base, rounded down.
Returns None if the number is zero, or if the base is not at least 2.
This method might not be optimized owing to implementation details;
checked_log2 can produce results more efficiently for base 2, and
checked_log10 can produce results more efficiently for base 10.
Examples
#![feature(int_log)]
assert_eq!(5usize.checked_log(5), Some(1));Runpub const fn checked_log2(self) -> Option<u32>
source
pub const fn checked_log2(self) -> Option<u32>
sourcepub const fn checked_log10(self) -> Option<u32>
source
pub const fn checked_log10(self) -> Option<u32>
sourcepub const fn checked_neg(self) -> Option<Self>
1.7.0 (const: 1.47.0) · source
pub const fn checked_neg(self) -> Option<Self>
1.7.0 (const: 1.47.0) · sourcepub const fn checked_shl(self, rhs: u32) -> Option<Self>
1.7.0 (const: 1.47.0) · source
pub const fn checked_shl(self, rhs: u32) -> Option<Self>
1.7.0 (const: 1.47.0) · sourcepub unsafe fn unchecked_shl(self, rhs: Self) -> Self
const: unstable · source
pub unsafe fn unchecked_shl(self, rhs: Self) -> Self
const: unstable · sourceUnchecked shift left. Computes self << rhs, assuming that
rhs is less than the number of bits in self.
Safety
This results in undefined behavior if rhs is larger than
or equal to the number of bits in self,
i.e. when checked_shl would return None.
pub const fn checked_shr(self, rhs: u32) -> Option<Self>
1.7.0 (const: 1.47.0) · source
pub const fn checked_shr(self, rhs: u32) -> Option<Self>
1.7.0 (const: 1.47.0) · sourcepub unsafe fn unchecked_shr(self, rhs: Self) -> Self
const: unstable · source
pub unsafe fn unchecked_shr(self, rhs: Self) -> Self
const: unstable · sourceUnchecked shift right. Computes self >> rhs, assuming that
rhs is less than the number of bits in self.
Safety
This results in undefined behavior if rhs is larger than
or equal to the number of bits in self,
i.e. when checked_shr would return None.
pub const fn checked_pow(self, exp: u32) -> Option<Self>
1.34.0 (const: 1.50.0) · source
pub const fn checked_pow(self, exp: u32) -> Option<Self>
1.34.0 (const: 1.50.0) · sourcepub const fn saturating_add(self, rhs: Self) -> Self
const: 1.47.0 · source
pub const fn saturating_add(self, rhs: Self) -> Self
const: 1.47.0 · sourcepub fn saturating_add_signed(self, rhs: isize) -> Self
const: unstable · source
pub fn saturating_add_signed(self, rhs: isize) -> Self
const: unstable · sourceSaturating addition with a signed integer. Computes self + rhs,
saturating at the numeric bounds instead of overflowing.
Examples
Basic usage:
assert_eq!(1usize.saturating_add_signed(2), 3);
assert_eq!(1usize.saturating_add_signed(-2), 0);
assert_eq!((usize::MAX - 2).saturating_add_signed(4), usize::MAX);Runpub const fn saturating_sub(self, rhs: Self) -> Self
const: 1.47.0 · source
pub const fn saturating_sub(self, rhs: Self) -> Self
const: 1.47.0 · sourcepub const fn saturating_mul(self, rhs: Self) -> Self
1.7.0 (const: 1.47.0) · source
pub const fn saturating_mul(self, rhs: Self) -> Self
1.7.0 (const: 1.47.0) · sourcepub const fn saturating_div(self, rhs: Self) -> Self
1.58.0 (const: 1.58.0) · source
pub const fn saturating_div(self, rhs: Self) -> Self
1.58.0 (const: 1.58.0) · sourcepub const fn saturating_pow(self, exp: u32) -> Self
1.34.0 (const: 1.50.0) · source
pub const fn saturating_pow(self, exp: u32) -> Self
1.34.0 (const: 1.50.0) · sourcepub const fn wrapping_add(self, rhs: Self) -> Self
const: 1.32.0 · source
pub const fn wrapping_add(self, rhs: Self) -> Self
const: 1.32.0 · sourcepub fn wrapping_add_signed(self, rhs: isize) -> Self
const: unstable · source
pub fn wrapping_add_signed(self, rhs: isize) -> Self
const: unstable · sourcepub const fn wrapping_sub(self, rhs: Self) -> Self
const: 1.32.0 · source
pub const fn wrapping_sub(self, rhs: Self) -> Self
const: 1.32.0 · sourcepub const fn wrapping_mul(self, rhs: Self) -> Self
const: 1.32.0 · source
pub const fn wrapping_mul(self, rhs: Self) -> Self
const: 1.32.0 · sourceWrapping (modular) multiplication. Computes self * rhs, wrapping around at the boundary of the type.
Examples
Basic usage:
Please note that this example is shared between integer types.
Which explains why u8 is used here.
assert_eq!(10u8.wrapping_mul(12), 120);
assert_eq!(25u8.wrapping_mul(12), 44);Runpub const fn wrapping_div(self, rhs: Self) -> Self
1.2.0 (const: 1.52.0) · source
pub const fn wrapping_div(self, rhs: Self) -> Self
1.2.0 (const: 1.52.0) · sourceWrapping (modular) division. Computes self / rhs.
Wrapped division on unsigned types is just normal division.
There’s no way wrapping could ever happen.
This function exists, so that all operations
are accounted for in the wrapping operations.
Examples
Basic usage:
assert_eq!(100usize.wrapping_div(10), 10);Runpub const fn wrapping_div_euclid(self, rhs: Self) -> Self
1.38.0 (const: 1.52.0) · source
pub const fn wrapping_div_euclid(self, rhs: Self) -> Self
1.38.0 (const: 1.52.0) · sourceWrapping Euclidean division. Computes self.div_euclid(rhs).
Wrapped division on unsigned types is just normal division.
There’s no way wrapping could ever happen.
This function exists, so that all operations
are accounted for in the wrapping operations.
Since, for the positive integers, all common
definitions of division are equal, this
is exactly equal to self.wrapping_div(rhs).
Examples
Basic usage:
assert_eq!(100usize.wrapping_div_euclid(10), 10);Runpub const fn wrapping_rem(self, rhs: Self) -> Self
1.2.0 (const: 1.52.0) · source
pub const fn wrapping_rem(self, rhs: Self) -> Self
1.2.0 (const: 1.52.0) · sourceWrapping (modular) remainder. Computes self % rhs.
Wrapped remainder calculation on unsigned types is
just the regular remainder calculation.
There’s no way wrapping could ever happen.
This function exists, so that all operations
are accounted for in the wrapping operations.
Examples
Basic usage:
assert_eq!(100usize.wrapping_rem(10), 0);Runpub const fn wrapping_rem_euclid(self, rhs: Self) -> Self
1.38.0 (const: 1.52.0) · source
pub const fn wrapping_rem_euclid(self, rhs: Self) -> Self
1.38.0 (const: 1.52.0) · sourceWrapping Euclidean modulo. Computes self.rem_euclid(rhs).
Wrapped modulo calculation on unsigned types is
just the regular remainder calculation.
There’s no way wrapping could ever happen.
This function exists, so that all operations
are accounted for in the wrapping operations.
Since, for the positive integers, all common
definitions of division are equal, this
is exactly equal to self.wrapping_rem(rhs).
Examples
Basic usage:
assert_eq!(100usize.wrapping_rem_euclid(10), 0);Runpub const fn wrapping_neg(self) -> Self
1.2.0 (const: 1.32.0) · source
pub const fn wrapping_neg(self) -> Self
1.2.0 (const: 1.32.0) · sourceWrapping (modular) negation. Computes -self,
wrapping around at the boundary of the type.
Since unsigned types do not have negative equivalents
all applications of this function will wrap (except for -0).
For values smaller than the corresponding signed type’s maximum
the result is the same as casting the corresponding signed value.
Any larger values are equivalent to MAX + 1 - (val - MAX - 1) where
MAX is the corresponding signed type’s maximum.
Examples
Basic usage:
Please note that this example is shared between integer types.
Which explains why i8 is used here.
assert_eq!(100i8.wrapping_neg(), -100);
assert_eq!((-128i8).wrapping_neg(), -128);Runpub const fn wrapping_shl(self, rhs: u32) -> Self
1.2.0 (const: 1.32.0) · source
pub const fn wrapping_shl(self, rhs: u32) -> Self
1.2.0 (const: 1.32.0) · sourcePanic-free bitwise shift-left; yields self << mask(rhs),
where mask removes any high-order bits of rhs that
would cause the shift to exceed the bitwidth of the type.
Note that this is not the same as a rotate-left; the
RHS of a wrapping shift-left is restricted to the range
of the type, rather than the bits shifted out of the LHS
being returned to the other end. The primitive integer
types all implement a rotate_left function,
which may be what you want instead.
Examples
Basic usage:
assert_eq!(1usize.wrapping_shl(7), 128);
assert_eq!(1usize.wrapping_shl(128), 1);Runpub const fn wrapping_shr(self, rhs: u32) -> Self
1.2.0 (const: 1.32.0) · source
pub const fn wrapping_shr(self, rhs: u32) -> Self
1.2.0 (const: 1.32.0) · sourcePanic-free bitwise shift-right; yields self >> mask(rhs),
where mask removes any high-order bits of rhs that
would cause the shift to exceed the bitwidth of the type.
Note that this is not the same as a rotate-right; the
RHS of a wrapping shift-right is restricted to the range
of the type, rather than the bits shifted out of the LHS
being returned to the other end. The primitive integer
types all implement a rotate_right function,
which may be what you want instead.
Examples
Basic usage:
assert_eq!(128usize.wrapping_shr(7), 1);
assert_eq!(128usize.wrapping_shr(128), 128);Runpub const fn wrapping_pow(self, exp: u32) -> Self
1.34.0 (const: 1.50.0) · source
pub const fn wrapping_pow(self, exp: u32) -> Self
1.34.0 (const: 1.50.0) · sourcepub const fn overflowing_add(self, rhs: Self) -> (Self, bool)
1.7.0 (const: 1.32.0) · source
pub const fn overflowing_add(self, rhs: Self) -> (Self, bool)
1.7.0 (const: 1.32.0) · sourceCalculates self + rhs
Returns a tuple of the addition along with a boolean indicating whether an arithmetic overflow would occur. If an overflow would have occurred then the wrapped value is returned.
Examples
Basic usage
assert_eq!(5usize.overflowing_add(2), (7, false));
assert_eq!(usize::MAX.overflowing_add(1), (0, true));Runpub fn carrying_add(self, rhs: Self, carry: bool) -> (Self, bool)
const: unstable · source
pub fn carrying_add(self, rhs: Self, carry: bool) -> (Self, bool)
const: unstable · sourceCalculates self + rhs + carry without the ability to overflow.
Performs “ternary addition” which takes in an extra bit to add, and may return an additional bit of overflow. This allows for chaining together multiple additions to create “big integers” which represent larger values.
This can be thought of as a 64-bit “full adder”, in the electronics sense.
Examples
Basic usage
#![feature(bigint_helper_methods)]
assert_eq!(5usize.carrying_add(2, false), (7, false));
assert_eq!(5usize.carrying_add(2, true), (8, false));
assert_eq!(usize::MAX.carrying_add(1, false), (0, true));
assert_eq!(usize::MAX.carrying_add(0, true), (0, true));
assert_eq!(usize::MAX.carrying_add(1, true), (1, true));
assert_eq!(usize::MAX.carrying_add(usize::MAX, true), (usize::MAX, true));RunIf carry is false, this method is equivalent to overflowing_add:
#![feature(bigint_helper_methods)]
assert_eq!(5_usize.carrying_add(2, false), 5_usize.overflowing_add(2));
assert_eq!(usize::MAX.carrying_add(1, false), usize::MAX.overflowing_add(1));Runpub fn overflowing_add_signed(self, rhs: isize) -> (Self, bool)
const: unstable · source
pub fn overflowing_add_signed(self, rhs: isize) -> (Self, bool)
const: unstable · sourceCalculates self + rhs with a signed rhs
Returns a tuple of the addition along with a boolean indicating whether an arithmetic overflow would occur. If an overflow would have occurred then the wrapped value is returned.
Examples
Basic usage:
assert_eq!(1usize.overflowing_add_signed(2), (3, false));
assert_eq!(1usize.overflowing_add_signed(-2), (usize::MAX, true));
assert_eq!((usize::MAX - 2).overflowing_add_signed(4), (1, true));Runpub const fn overflowing_sub(self, rhs: Self) -> (Self, bool)
1.7.0 (const: 1.32.0) · source
pub const fn overflowing_sub(self, rhs: Self) -> (Self, bool)
1.7.0 (const: 1.32.0) · sourceCalculates self - rhs
Returns a tuple of the subtraction along with a boolean indicating whether an arithmetic overflow would occur. If an overflow would have occurred then the wrapped value is returned.
Examples
Basic usage
assert_eq!(5usize.overflowing_sub(2), (3, false));
assert_eq!(0usize.overflowing_sub(1), (usize::MAX, true));Runpub fn borrowing_sub(self, rhs: Self, borrow: bool) -> (Self, bool)
const: unstable · source
pub fn borrowing_sub(self, rhs: Self, borrow: bool) -> (Self, bool)
const: unstable · sourceCalculates self - rhs - borrow without the ability to overflow.
Performs “ternary subtraction” which takes in an extra bit to subtract, and may return an additional bit of overflow. This allows for chaining together multiple subtractions to create “big integers” which represent larger values.
Examples
Basic usage
#![feature(bigint_helper_methods)]
assert_eq!(5usize.borrowing_sub(2, false), (3, false));
assert_eq!(5usize.borrowing_sub(2, true), (2, false));
assert_eq!(0usize.borrowing_sub(1, false), (usize::MAX, true));
assert_eq!(0usize.borrowing_sub(1, true), (usize::MAX - 1, true));Runpub const fn overflowing_mul(self, rhs: Self) -> (Self, bool)
1.7.0 (const: 1.32.0) · source
pub const fn overflowing_mul(self, rhs: Self) -> (Self, bool)
1.7.0 (const: 1.32.0) · sourceCalculates the multiplication of self and rhs.
Returns a tuple of the multiplication along with a boolean indicating whether an arithmetic overflow would occur. If an overflow would have occurred then the wrapped value is returned.
Examples
Basic usage:
Please note that this example is shared between integer types.
Which explains why u32 is used here.
assert_eq!(5u32.overflowing_mul(2), (10, false));
assert_eq!(1_000_000_000u32.overflowing_mul(10), (1410065408, true));Runpub const fn overflowing_div(self, rhs: Self) -> (Self, bool)
1.7.0 (const: 1.52.0) · source
pub const fn overflowing_div(self, rhs: Self) -> (Self, bool)
1.7.0 (const: 1.52.0) · sourceCalculates the divisor when self is divided by rhs.
Returns a tuple of the divisor along with a boolean indicating
whether an arithmetic overflow would occur. Note that for unsigned
integers overflow never occurs, so the second value is always
false.
Panics
This function will panic if rhs is 0.
Examples
Basic usage
assert_eq!(5usize.overflowing_div(2), (2, false));Runpub const fn overflowing_div_euclid(self, rhs: Self) -> (Self, bool)
1.38.0 (const: 1.52.0) · source
pub const fn overflowing_div_euclid(self, rhs: Self) -> (Self, bool)
1.38.0 (const: 1.52.0) · sourceCalculates the quotient of Euclidean division self.div_euclid(rhs).
Returns a tuple of the divisor along with a boolean indicating
whether an arithmetic overflow would occur. Note that for unsigned
integers overflow never occurs, so the second value is always
false.
Since, for the positive integers, all common
definitions of division are equal, this
is exactly equal to self.overflowing_div(rhs).
Panics
This function will panic if rhs is 0.
Examples
Basic usage
assert_eq!(5usize.overflowing_div_euclid(2), (2, false));Runpub const fn overflowing_rem(self, rhs: Self) -> (Self, bool)
1.7.0 (const: 1.52.0) · source
pub const fn overflowing_rem(self, rhs: Self) -> (Self, bool)
1.7.0 (const: 1.52.0) · sourceCalculates the remainder when self is divided by rhs.
Returns a tuple of the remainder after dividing along with a boolean
indicating whether an arithmetic overflow would occur. Note that for
unsigned integers overflow never occurs, so the second value is
always false.
Panics
This function will panic if rhs is 0.
Examples
Basic usage
assert_eq!(5usize.overflowing_rem(2), (1, false));Runpub const fn overflowing_rem_euclid(self, rhs: Self) -> (Self, bool)
1.38.0 (const: 1.52.0) · source
pub const fn overflowing_rem_euclid(self, rhs: Self) -> (Self, bool)
1.38.0 (const: 1.52.0) · sourceCalculates the remainder self.rem_euclid(rhs) as if by Euclidean division.
Returns a tuple of the modulo after dividing along with a boolean
indicating whether an arithmetic overflow would occur. Note that for
unsigned integers overflow never occurs, so the second value is
always false.
Since, for the positive integers, all common
definitions of division are equal, this operation
is exactly equal to self.overflowing_rem(rhs).
Panics
This function will panic if rhs is 0.
Examples
Basic usage
assert_eq!(5usize.overflowing_rem_euclid(2), (1, false));Runpub const fn overflowing_neg(self) -> (Self, bool)
1.7.0 (const: 1.32.0) · source
pub const fn overflowing_neg(self) -> (Self, bool)
1.7.0 (const: 1.32.0) · sourceNegates self in an overflowing fashion.
Returns !self + 1 using wrapping operations to return the value
that represents the negation of this unsigned value. Note that for
positive unsigned values overflow always occurs, but negating 0 does
not overflow.
Examples
Basic usage
assert_eq!(0usize.overflowing_neg(), (0, false));
assert_eq!(2usize.overflowing_neg(), (-2i32 as usize, true));Runpub const fn overflowing_shl(self, rhs: u32) -> (Self, bool)
1.7.0 (const: 1.32.0) · source
pub const fn overflowing_shl(self, rhs: u32) -> (Self, bool)
1.7.0 (const: 1.32.0) · sourceShifts self left by rhs bits.
Returns a tuple of the shifted version of self along with a boolean indicating whether the shift value was larger than or equal to the number of bits. If the shift value is too large, then value is masked (N-1) where N is the number of bits, and this value is then used to perform the shift.
Examples
Basic usage
assert_eq!(0x1usize.overflowing_shl(4), (0x10, false));
assert_eq!(0x1usize.overflowing_shl(132), (0x10, true));Runpub const fn overflowing_shr(self, rhs: u32) -> (Self, bool)
1.7.0 (const: 1.32.0) · source
pub const fn overflowing_shr(self, rhs: u32) -> (Self, bool)
1.7.0 (const: 1.32.0) · sourceShifts self right by rhs bits.
Returns a tuple of the shifted version of self along with a boolean indicating whether the shift value was larger than or equal to the number of bits. If the shift value is too large, then value is masked (N-1) where N is the number of bits, and this value is then used to perform the shift.
Examples
Basic usage
assert_eq!(0x10usize.overflowing_shr(4), (0x1, false));
assert_eq!(0x10usize.overflowing_shr(132), (0x1, true));Runpub const fn div_euclid(self, rhs: Self) -> Self
1.38.0 (const: 1.52.0) · source
pub const fn div_euclid(self, rhs: Self) -> Self
1.38.0 (const: 1.52.0) · sourcepub const fn rem_euclid(self, rhs: Self) -> Self
1.38.0 (const: 1.52.0) · source
pub const fn rem_euclid(self, rhs: Self) -> Self
1.38.0 (const: 1.52.0) · sourceCalculates the least remainder of self (mod rhs).
Since, for the positive integers, all common
definitions of division are equal, this
is exactly equal to self % rhs.
Panics
This function will panic if rhs is 0.
Examples
Basic usage:
assert_eq!(7usize.rem_euclid(4), 3); // or any other integer typeRunpub const fn div_ceil(self, rhs: Self) -> Self
source
pub const fn div_ceil(self, rhs: Self) -> Self
sourceCalculates the quotient of self and rhs, rounding the result towards positive infinity.
Panics
This function will panic if rhs is zero.
Overflow behavior
On overflow, this function will panic if overflow checks are enabled (default in debug mode) and wrap if overflow checks are disabled (default in release mode).
Examples
Basic usage:
#![feature(int_roundings)]
assert_eq!(7_usize.div_ceil(4), 2);Runpub const fn next_multiple_of(self, rhs: Self) -> Self
source
pub const fn next_multiple_of(self, rhs: Self) -> Self
sourceCalculates the smallest value greater than or equal to self that
is a multiple of rhs.
Panics
This function will panic if rhs is zero.
Overflow behavior
On overflow, this function will panic if overflow checks are enabled (default in debug mode) and wrap if overflow checks are disabled (default in release mode).
Examples
Basic usage:
#![feature(int_roundings)]
assert_eq!(16_usize.next_multiple_of(8), 16);
assert_eq!(23_usize.next_multiple_of(8), 24);Runpub const fn checked_next_multiple_of(self, rhs: Self) -> Option<Self>
source
pub const fn checked_next_multiple_of(self, rhs: Self) -> Option<Self>
sourceCalculates the smallest value greater than or equal to self that
is a multiple of rhs. Returns None if rhs is zero or the
operation would result in overflow.
Examples
Basic usage:
#![feature(int_roundings)]
assert_eq!(16_usize.checked_next_multiple_of(8), Some(16));
assert_eq!(23_usize.checked_next_multiple_of(8), Some(24));
assert_eq!(1_usize.checked_next_multiple_of(0), None);
assert_eq!(usize::MAX.checked_next_multiple_of(2), None);Runpub const fn is_power_of_two(self) -> bool
const: 1.32.0 · source
pub const fn is_power_of_two(self) -> bool
const: 1.32.0 · sourcepub const fn next_power_of_two(self) -> Self
const: 1.50.0 · source
pub const fn next_power_of_two(self) -> Self
const: 1.50.0 · sourceReturns the smallest power of two greater than or equal to self.
When return value overflows (i.e., self > (1 << (N-1)) for type
uN), it panics in debug mode and the return value is wrapped to 0 in
release mode (the only situation in which method can return 0).
Examples
Basic usage:
assert_eq!(2usize.next_power_of_two(), 2);
assert_eq!(3usize.next_power_of_two(), 4);Runpub const fn checked_next_power_of_two(self) -> Option<Self>
const: 1.50.0 · source
pub const fn checked_next_power_of_two(self) -> Option<Self>
const: 1.50.0 · sourceReturns the smallest power of two greater than or equal to n. If
the next power of two is greater than the type’s maximum value,
None is returned, otherwise the power of two is wrapped in Some.
Examples
Basic usage:
assert_eq!(2usize.checked_next_power_of_two(), Some(2));
assert_eq!(3usize.checked_next_power_of_two(), Some(4));
assert_eq!(usize::MAX.checked_next_power_of_two(), None);Runpub fn wrapping_next_power_of_two(self) -> Self
const: unstable · source
pub fn wrapping_next_power_of_two(self) -> Self
const: unstable · sourceReturns the smallest power of two greater than or equal to n. If
the next power of two is greater than the type’s maximum value,
the return value is wrapped to 0.
Examples
Basic usage:
#![feature(wrapping_next_power_of_two)]
assert_eq!(2usize.wrapping_next_power_of_two(), 2);
assert_eq!(3usize.wrapping_next_power_of_two(), 4);
assert_eq!(usize::MAX.wrapping_next_power_of_two(), 0);Runpub const fn to_be_bytes(self) -> [u8; 8]
1.32.0 (const: 1.44.0) · source
pub const fn to_be_bytes(self) -> [u8; 8]
1.32.0 (const: 1.44.0) · sourceReturn the memory representation of this integer as a byte array in big-endian (network) byte order.
Note: This function returns an array of length 2, 4 or 8 bytes depending on the target pointer size.
Examples
let bytes = 0x1234567890123456usize.to_be_bytes();
assert_eq!(bytes, [0x12, 0x34, 0x56, 0x78, 0x90, 0x12, 0x34, 0x56]);Runpub const fn to_le_bytes(self) -> [u8; 8]
1.32.0 (const: 1.44.0) · source
pub const fn to_le_bytes(self) -> [u8; 8]
1.32.0 (const: 1.44.0) · sourceReturn the memory representation of this integer as a byte array in little-endian byte order.
Note: This function returns an array of length 2, 4 or 8 bytes depending on the target pointer size.
Examples
let bytes = 0x1234567890123456usize.to_le_bytes();
assert_eq!(bytes, [0x56, 0x34, 0x12, 0x90, 0x78, 0x56, 0x34, 0x12]);Runpub const fn to_ne_bytes(self) -> [u8; 8]
1.32.0 (const: 1.44.0) · source
pub const fn to_ne_bytes(self) -> [u8; 8]
1.32.0 (const: 1.44.0) · sourceReturn the memory representation of this integer as a byte array in native byte order.
As the target platform’s native endianness is used, portable code
should use to_be_bytes or to_le_bytes, as appropriate,
instead.
Note: This function returns an array of length 2, 4 or 8 bytes depending on the target pointer size.
Examples
let bytes = 0x1234567890123456usize.to_ne_bytes();
assert_eq!(
bytes,
if cfg!(target_endian = "big") {
[0x12, 0x34, 0x56, 0x78, 0x90, 0x12, 0x34, 0x56]
} else {
[0x56, 0x34, 0x12, 0x90, 0x78, 0x56, 0x34, 0x12]
}
);Runpub const fn from_be_bytes(bytes: [u8; 8]) -> Self
1.32.0 (const: 1.44.0) · source
pub const fn from_be_bytes(bytes: [u8; 8]) -> Self
1.32.0 (const: 1.44.0) · sourceCreate a native endian integer value from its representation as a byte array in big endian.
Note: This function takes an array of length 2, 4 or 8 bytes depending on the target pointer size.
Examples
let value = usize::from_be_bytes([0x12, 0x34, 0x56, 0x78, 0x90, 0x12, 0x34, 0x56]);
assert_eq!(value, 0x1234567890123456);RunWhen starting from a slice rather than an array, fallible conversion APIs can be used:
fn read_be_usize(input: &mut &[u8]) -> usize {
let (int_bytes, rest) = input.split_at(std::mem::size_of::<usize>());
*input = rest;
usize::from_be_bytes(int_bytes.try_into().unwrap())
}Runpub const fn from_le_bytes(bytes: [u8; 8]) -> Self
1.32.0 (const: 1.44.0) · source
pub const fn from_le_bytes(bytes: [u8; 8]) -> Self
1.32.0 (const: 1.44.0) · sourceCreate a native endian integer value from its representation as a byte array in little endian.
Note: This function takes an array of length 2, 4 or 8 bytes depending on the target pointer size.
Examples
let value = usize::from_le_bytes([0x56, 0x34, 0x12, 0x90, 0x78, 0x56, 0x34, 0x12]);
assert_eq!(value, 0x1234567890123456);RunWhen starting from a slice rather than an array, fallible conversion APIs can be used:
fn read_le_usize(input: &mut &[u8]) -> usize {
let (int_bytes, rest) = input.split_at(std::mem::size_of::<usize>());
*input = rest;
usize::from_le_bytes(int_bytes.try_into().unwrap())
}Runpub const fn from_ne_bytes(bytes: [u8; 8]) -> Self
1.32.0 (const: 1.44.0) · source
pub const fn from_ne_bytes(bytes: [u8; 8]) -> Self
1.32.0 (const: 1.44.0) · sourceCreate a native endian integer value from its memory representation as a byte array in native endianness.
As the target platform’s native endianness is used, portable code
likely wants to use from_be_bytes or from_le_bytes, as
appropriate instead.
Note: This function takes an array of length 2, 4 or 8 bytes depending on the target pointer size.
Examples
let value = usize::from_ne_bytes(if cfg!(target_endian = "big") {
[0x12, 0x34, 0x56, 0x78, 0x90, 0x12, 0x34, 0x56]
} else {
[0x56, 0x34, 0x12, 0x90, 0x78, 0x56, 0x34, 0x12]
});
assert_eq!(value, 0x1234567890123456);RunWhen starting from a slice rather than an array, fallible conversion APIs can be used:
fn read_ne_usize(input: &mut &[u8]) -> usize {
let (int_bytes, rest) = input.split_at(std::mem::size_of::<usize>());
*input = rest;
usize::from_ne_bytes(int_bytes.try_into().unwrap())
}Runpub const fn min_value() -> Self
const: 1.32.0 · source 👎 Deprecating in a future Rust version: replaced by the MIN associated constant on this type
pub const fn min_value() -> Self
const: 1.32.0 · sourcereplaced by the MIN associated constant on this type
New code should prefer to use
usize::MIN instead.
Returns the smallest value that can be represented by this integer type.
pub const fn max_value() -> Self
const: 1.32.0 · source 👎 Deprecating in a future Rust version: replaced by the MAX associated constant on this type
pub const fn max_value() -> Self
const: 1.32.0 · sourcereplaced by the MAX associated constant on this type
New code should prefer to use
usize::MAX instead.
Returns the largest value that can be represented by this integer type.
pub fn widening_mul(self, rhs: Self) -> (Self, Self)
const: unstable · source
pub fn widening_mul(self, rhs: Self) -> (Self, Self)
const: unstable · sourceCalculates the complete product self * rhs without the possibility to overflow.
This returns the low-order (wrapping) bits and the high-order (overflow) bits of the result as two separate values, in that order.
Examples
Basic usage:
Please note that this example is shared between integer types.
Which explains why u32 is used here.
#![feature(bigint_helper_methods)]
assert_eq!(5u32.widening_mul(2), (10, 0));
assert_eq!(1_000_000_000u32.widening_mul(10), (1410065408, 2));Runpub fn carrying_mul(self, rhs: Self, carry: Self) -> (Self, Self)
const: unstable · source
pub fn carrying_mul(self, rhs: Self, carry: Self) -> (Self, Self)
const: unstable · sourceCalculates the “full multiplication” self * rhs + carry
without the possibility to overflow.
This returns the low-order (wrapping) bits and the high-order (overflow) bits of the result as two separate values, in that order.
Performs “long multiplication” which takes in an extra amount to add, and may return an additional amount of overflow. This allows for chaining together multiple multiplications to create “big integers” which represent larger values.
Examples
Basic usage:
Please note that this example is shared between integer types.
Which explains why u32 is used here.
#![feature(bigint_helper_methods)]
assert_eq!(5u32.carrying_mul(2, 0), (10, 0));
assert_eq!(5u32.carrying_mul(2, 10), (20, 0));
assert_eq!(1_000_000_000u32.carrying_mul(10, 0), (1410065408, 2));
assert_eq!(1_000_000_000u32.carrying_mul(10, 10), (1410065418, 2));
assert_eq!(usize::MAX.carrying_mul(usize::MAX, usize::MAX), (0, usize::MAX));RunIf carry is zero, this is similar to overflowing_mul,
except that it gives the value of the overflow instead of just whether one happened:
#![feature(bigint_helper_methods)]
let r = u8::carrying_mul(7, 13, 0);
assert_eq!((r.0, r.1 != 0), u8::overflowing_mul(7, 13));
let r = u8::carrying_mul(13, 42, 0);
assert_eq!((r.0, r.1 != 0), u8::overflowing_mul(13, 42));RunThe value of the first field in the returned tuple matches what you’d get
by combining the wrapping_mul and
wrapping_add methods:
#![feature(bigint_helper_methods)]
assert_eq!(
789_u16.carrying_mul(456, 123).0,
789_u16.wrapping_mul(456).wrapping_add(123),
);RunTrait Implementations
impl AddAssign<&'_ usize> for Saturating<usize>
1.22.0 · source
impl AddAssign<&'_ usize> for Saturating<usize>
1.22.0 · sourcefn add_assign(&mut self, other: &usize)
source
fn add_assign(&mut self, other: &usize)
sourcePerforms the += operation. Read more
impl AddAssign<&'_ usize> for Wrapping<usize>
1.22.0 (const: unstable) · source
impl AddAssign<&'_ usize> for Wrapping<usize>
1.22.0 (const: unstable) · sourcefn add_assign(&mut self, other: &usize)
const: unstable · source
fn add_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the += operation. Read more
impl AddAssign<&'_ usize> for usize
1.22.0 (const: unstable) · source
impl AddAssign<&'_ usize> for usize
1.22.0 (const: unstable) · sourcefn add_assign(&mut self, other: &usize)
const: unstable · source
fn add_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the += operation. Read more
impl AddAssign<usize> for Saturating<usize>
source
impl AddAssign<usize> for Saturating<usize>
sourcefn add_assign(&mut self, other: usize)
source
fn add_assign(&mut self, other: usize)
sourcePerforms the += operation. Read more
impl AddAssign<usize> for Wrapping<usize>
1.60.0 (const: unstable) · source
impl AddAssign<usize> for Wrapping<usize>
1.60.0 (const: unstable) · sourcefn add_assign(&mut self, other: usize)
const: unstable · source
fn add_assign(&mut self, other: usize)
const: unstable · sourcePerforms the += operation. Read more
impl AddAssign<usize> for usize
1.8.0 (const: unstable) · source
impl AddAssign<usize> for usize
1.8.0 (const: unstable) · sourcefn add_assign(&mut self, other: usize)
const: unstable · source
fn add_assign(&mut self, other: usize)
const: unstable · sourcePerforms the += operation. Read more
impl BitAndAssign<&'_ usize> for Saturating<usize>
1.22.0 · source
impl BitAndAssign<&'_ usize> for Saturating<usize>
1.22.0 · sourcefn bitand_assign(&mut self, other: &usize)
source
fn bitand_assign(&mut self, other: &usize)
sourcePerforms the &= operation. Read more
impl BitAndAssign<&'_ usize> for Wrapping<usize>
1.22.0 (const: unstable) · source
impl BitAndAssign<&'_ usize> for Wrapping<usize>
1.22.0 (const: unstable) · sourcefn bitand_assign(&mut self, other: &usize)
const: unstable · source
fn bitand_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the &= operation. Read more
impl BitAndAssign<&'_ usize> for usize
1.22.0 (const: unstable) · source
impl BitAndAssign<&'_ usize> for usize
1.22.0 (const: unstable) · sourcefn bitand_assign(&mut self, other: &usize)
const: unstable · source
fn bitand_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the &= operation. Read more
impl BitAndAssign<usize> for Saturating<usize>
source
impl BitAndAssign<usize> for Saturating<usize>
sourcefn bitand_assign(&mut self, other: usize)
source
fn bitand_assign(&mut self, other: usize)
sourcePerforms the &= operation. Read more
impl BitAndAssign<usize> for Wrapping<usize>
1.60.0 (const: unstable) · source
impl BitAndAssign<usize> for Wrapping<usize>
1.60.0 (const: unstable) · sourcefn bitand_assign(&mut self, other: usize)
const: unstable · source
fn bitand_assign(&mut self, other: usize)
const: unstable · sourcePerforms the &= operation. Read more
impl BitAndAssign<usize> for usize
1.8.0 (const: unstable) · source
impl BitAndAssign<usize> for usize
1.8.0 (const: unstable) · sourcefn bitand_assign(&mut self, other: usize)
const: unstable · source
fn bitand_assign(&mut self, other: usize)
const: unstable · sourcePerforms the &= operation. Read more
impl BitOr<NonZeroUsize> for usize
1.45.0 (const: unstable) · source
impl BitOr<NonZeroUsize> for usize
1.45.0 (const: unstable) · sourcetype Output = NonZeroUsize
type Output = NonZeroUsize
The resulting type after applying the | operator.
impl BitOr<usize> for NonZeroUsize
1.45.0 (const: unstable) · source
impl BitOr<usize> for NonZeroUsize
1.45.0 (const: unstable) · sourceimpl BitOrAssign<&'_ usize> for Saturating<usize>
1.22.0 · source
impl BitOrAssign<&'_ usize> for Saturating<usize>
1.22.0 · sourcefn bitor_assign(&mut self, other: &usize)
source
fn bitor_assign(&mut self, other: &usize)
sourcePerforms the |= operation. Read more
impl BitOrAssign<&'_ usize> for Wrapping<usize>
1.22.0 (const: unstable) · source
impl BitOrAssign<&'_ usize> for Wrapping<usize>
1.22.0 (const: unstable) · sourcefn bitor_assign(&mut self, other: &usize)
const: unstable · source
fn bitor_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the |= operation. Read more
impl BitOrAssign<&'_ usize> for usize
1.22.0 (const: unstable) · source
impl BitOrAssign<&'_ usize> for usize
1.22.0 (const: unstable) · sourcefn bitor_assign(&mut self, other: &usize)
const: unstable · source
fn bitor_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the |= operation. Read more
impl BitOrAssign<usize> for NonZeroUsize
1.45.0 (const: unstable) · source
impl BitOrAssign<usize> for NonZeroUsize
1.45.0 (const: unstable) · sourcefn bitor_assign(&mut self, rhs: usize)
const: unstable · source
fn bitor_assign(&mut self, rhs: usize)
const: unstable · sourcePerforms the |= operation. Read more
impl BitOrAssign<usize> for Saturating<usize>
source
impl BitOrAssign<usize> for Saturating<usize>
sourcefn bitor_assign(&mut self, other: usize)
source
fn bitor_assign(&mut self, other: usize)
sourcePerforms the |= operation. Read more
impl BitOrAssign<usize> for Wrapping<usize>
1.60.0 (const: unstable) · source
impl BitOrAssign<usize> for Wrapping<usize>
1.60.0 (const: unstable) · sourcefn bitor_assign(&mut self, other: usize)
const: unstable · source
fn bitor_assign(&mut self, other: usize)
const: unstable · sourcePerforms the |= operation. Read more
impl BitOrAssign<usize> for usize
1.8.0 (const: unstable) · source
impl BitOrAssign<usize> for usize
1.8.0 (const: unstable) · sourcefn bitor_assign(&mut self, other: usize)
const: unstable · source
fn bitor_assign(&mut self, other: usize)
const: unstable · sourcePerforms the |= operation. Read more
impl BitXorAssign<&'_ usize> for Saturating<usize>
1.22.0 · source
impl BitXorAssign<&'_ usize> for Saturating<usize>
1.22.0 · sourcefn bitxor_assign(&mut self, other: &usize)
source
fn bitxor_assign(&mut self, other: &usize)
sourcePerforms the ^= operation. Read more
impl BitXorAssign<&'_ usize> for Wrapping<usize>
1.22.0 (const: unstable) · source
impl BitXorAssign<&'_ usize> for Wrapping<usize>
1.22.0 (const: unstable) · sourcefn bitxor_assign(&mut self, other: &usize)
const: unstable · source
fn bitxor_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the ^= operation. Read more
impl BitXorAssign<&'_ usize> for usize
1.22.0 (const: unstable) · source
impl BitXorAssign<&'_ usize> for usize
1.22.0 (const: unstable) · sourcefn bitxor_assign(&mut self, other: &usize)
const: unstable · source
fn bitxor_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the ^= operation. Read more
impl BitXorAssign<usize> for Saturating<usize>
source
impl BitXorAssign<usize> for Saturating<usize>
sourcefn bitxor_assign(&mut self, other: usize)
source
fn bitxor_assign(&mut self, other: usize)
sourcePerforms the ^= operation. Read more
impl BitXorAssign<usize> for Wrapping<usize>
1.60.0 (const: unstable) · source
impl BitXorAssign<usize> for Wrapping<usize>
1.60.0 (const: unstable) · sourcefn bitxor_assign(&mut self, other: usize)
const: unstable · source
fn bitxor_assign(&mut self, other: usize)
const: unstable · sourcePerforms the ^= operation. Read more
impl BitXorAssign<usize> for usize
1.8.0 (const: unstable) · source
impl BitXorAssign<usize> for usize
1.8.0 (const: unstable) · sourcefn bitxor_assign(&mut self, other: usize)
const: unstable · source
fn bitxor_assign(&mut self, other: usize)
const: unstable · sourcePerforms the ^= operation. Read more
impl Div<NonZeroUsize> for usize
1.51.0 (const: unstable) · source
impl Div<NonZeroUsize> for usize
1.51.0 (const: unstable) · sourceimpl Div<usize> for usize
const: unstable · source
impl Div<usize> for usize
const: unstable · sourceThis operation rounds towards zero, truncating any fractional part of the exact result.
Panics
This operation will panic if other == 0.
impl DivAssign<&'_ usize> for Saturating<usize>
1.22.0 · source
impl DivAssign<&'_ usize> for Saturating<usize>
1.22.0 · sourcefn div_assign(&mut self, other: &usize)
source
fn div_assign(&mut self, other: &usize)
sourcePerforms the /= operation. Read more
impl DivAssign<&'_ usize> for Wrapping<usize>
1.22.0 (const: unstable) · source
impl DivAssign<&'_ usize> for Wrapping<usize>
1.22.0 (const: unstable) · sourcefn div_assign(&mut self, other: &usize)
const: unstable · source
fn div_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the /= operation. Read more
impl DivAssign<&'_ usize> for usize
1.22.0 (const: unstable) · source
impl DivAssign<&'_ usize> for usize
1.22.0 (const: unstable) · sourcefn div_assign(&mut self, other: &usize)
const: unstable · source
fn div_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the /= operation. Read more
impl DivAssign<usize> for Saturating<usize>
source
impl DivAssign<usize> for Saturating<usize>
sourcefn div_assign(&mut self, other: usize)
source
fn div_assign(&mut self, other: usize)
sourcePerforms the /= operation. Read more
impl DivAssign<usize> for Wrapping<usize>
1.60.0 (const: unstable) · source
impl DivAssign<usize> for Wrapping<usize>
1.60.0 (const: unstable) · sourcefn div_assign(&mut self, other: usize)
const: unstable · source
fn div_assign(&mut self, other: usize)
const: unstable · sourcePerforms the /= operation. Read more
impl DivAssign<usize> for usize
1.8.0 (const: unstable) · source
impl DivAssign<usize> for usize
1.8.0 (const: unstable) · sourcefn div_assign(&mut self, other: usize)
const: unstable · source
fn div_assign(&mut self, other: usize)
const: unstable · sourcePerforms the /= operation. Read more
impl From<NonZeroUsize> for usize
1.31.0 (const: unstable) · source
impl From<NonZeroUsize> for usize
1.31.0 (const: unstable) · sourcefn from(nonzero: NonZeroUsize) -> Self
const: unstable · source
fn from(nonzero: NonZeroUsize) -> Self
const: unstable · sourceConverts a NonZeroUsize into an usize
impl From<usize> for AtomicUsize
1.23.0 (const: unstable) · source
impl From<usize> for AtomicUsize
1.23.0 (const: unstable) · sourceimpl FromStr for usize
source
impl FromStr for usize
sourcetype Err = ParseIntError
type Err = ParseIntError
The associated error which can be returned from parsing.
impl MulAssign<&'_ usize> for Saturating<usize>
1.22.0 · source
impl MulAssign<&'_ usize> for Saturating<usize>
1.22.0 · sourcefn mul_assign(&mut self, other: &usize)
source
fn mul_assign(&mut self, other: &usize)
sourcePerforms the *= operation. Read more
impl MulAssign<&'_ usize> for Wrapping<usize>
1.22.0 (const: unstable) · source
impl MulAssign<&'_ usize> for Wrapping<usize>
1.22.0 (const: unstable) · sourcefn mul_assign(&mut self, other: &usize)
const: unstable · source
fn mul_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the *= operation. Read more
impl MulAssign<&'_ usize> for usize
1.22.0 (const: unstable) · source
impl MulAssign<&'_ usize> for usize
1.22.0 (const: unstable) · sourcefn mul_assign(&mut self, other: &usize)
const: unstable · source
fn mul_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the *= operation. Read more
impl MulAssign<usize> for Saturating<usize>
source
impl MulAssign<usize> for Saturating<usize>
sourcefn mul_assign(&mut self, other: usize)
source
fn mul_assign(&mut self, other: usize)
sourcePerforms the *= operation. Read more
impl MulAssign<usize> for Wrapping<usize>
1.60.0 (const: unstable) · source
impl MulAssign<usize> for Wrapping<usize>
1.60.0 (const: unstable) · sourcefn mul_assign(&mut self, other: usize)
const: unstable · source
fn mul_assign(&mut self, other: usize)
const: unstable · sourcePerforms the *= operation. Read more
impl MulAssign<usize> for usize
1.8.0 (const: unstable) · source
impl MulAssign<usize> for usize
1.8.0 (const: unstable) · sourcefn mul_assign(&mut self, other: usize)
const: unstable · source
fn mul_assign(&mut self, other: usize)
const: unstable · sourcePerforms the *= operation. Read more
impl Ord for usize
source
impl Ord for usize
sourceimpl PartialOrd<usize> for usize
source
impl PartialOrd<usize> for usize
sourcefn partial_cmp(&self, other: &usize) -> Option<Ordering>
source
fn partial_cmp(&self, other: &usize) -> Option<Ordering>
sourceThis method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &usize) -> bool
source
fn lt(&self, other: &usize) -> bool
sourceThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &usize) -> bool
source
fn le(&self, other: &usize) -> bool
sourceThis method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl Rem<NonZeroUsize> for usize
1.51.0 (const: unstable) · source
impl Rem<NonZeroUsize> for usize
1.51.0 (const: unstable) · sourceimpl Rem<usize> for usize
const: unstable · source
impl Rem<usize> for usize
const: unstable · sourceThis operation satisfies n % d == n - (n / d) * d. The
result has the same sign as the left operand.
Panics
This operation will panic if other == 0.
impl RemAssign<&'_ usize> for Saturating<usize>
1.22.0 · source
impl RemAssign<&'_ usize> for Saturating<usize>
1.22.0 · sourcefn rem_assign(&mut self, other: &usize)
source
fn rem_assign(&mut self, other: &usize)
sourcePerforms the %= operation. Read more
impl RemAssign<&'_ usize> for Wrapping<usize>
1.22.0 (const: unstable) · source
impl RemAssign<&'_ usize> for Wrapping<usize>
1.22.0 (const: unstable) · sourcefn rem_assign(&mut self, other: &usize)
const: unstable · source
fn rem_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the %= operation. Read more
impl RemAssign<&'_ usize> for usize
1.22.0 (const: unstable) · source
impl RemAssign<&'_ usize> for usize
1.22.0 (const: unstable) · sourcefn rem_assign(&mut self, other: &usize)
const: unstable · source
fn rem_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the %= operation. Read more
impl RemAssign<usize> for Saturating<usize>
source
impl RemAssign<usize> for Saturating<usize>
sourcefn rem_assign(&mut self, other: usize)
source
fn rem_assign(&mut self, other: usize)
sourcePerforms the %= operation. Read more
impl RemAssign<usize> for Wrapping<usize>
1.60.0 (const: unstable) · source
impl RemAssign<usize> for Wrapping<usize>
1.60.0 (const: unstable) · sourcefn rem_assign(&mut self, other: usize)
const: unstable · source
fn rem_assign(&mut self, other: usize)
const: unstable · sourcePerforms the %= operation. Read more
impl RemAssign<usize> for usize
1.8.0 (const: unstable) · source
impl RemAssign<usize> for usize
1.8.0 (const: unstable) · sourcefn rem_assign(&mut self, other: usize)
const: unstable · source
fn rem_assign(&mut self, other: usize)
const: unstable · sourcePerforms the %= operation. Read more
impl Shl<&'_ usize> for Saturating<u8>
source
impl Shl<&'_ usize> for Saturating<u8>
sourceimpl Shl<&'_ usize> for &Saturating<u8>
source
impl Shl<&'_ usize> for &Saturating<u8>
sourceimpl Shl<&'_ usize> for Saturating<usize>
source
impl Shl<&'_ usize> for Saturating<usize>
sourceimpl Shl<&'_ usize> for &Saturating<usize>
source
impl Shl<&'_ usize> for &Saturating<usize>
sourceimpl Shl<&'_ usize> for Saturating<i8>
source
impl Shl<&'_ usize> for Saturating<i8>
sourceimpl Shl<&'_ usize> for &Saturating<i8>
source
impl Shl<&'_ usize> for &Saturating<i8>
sourceimpl Shl<&'_ usize> for Saturating<i16>
source
impl Shl<&'_ usize> for Saturating<i16>
sourceimpl Shl<&'_ usize> for &Saturating<i16>
source
impl Shl<&'_ usize> for &Saturating<i16>
sourceimpl Shl<&'_ usize> for Saturating<i32>
source
impl Shl<&'_ usize> for Saturating<i32>
sourceimpl Shl<&'_ usize> for &Saturating<i32>
source
impl Shl<&'_ usize> for &Saturating<i32>
sourceimpl Shl<&'_ usize> for Saturating<i64>
source
impl Shl<&'_ usize> for Saturating<i64>
sourceimpl Shl<&'_ usize> for &Saturating<i64>
source
impl Shl<&'_ usize> for &Saturating<i64>
sourceimpl Shl<&'_ usize> for Saturating<u16>
source
impl Shl<&'_ usize> for Saturating<u16>
sourceimpl Shl<&'_ usize> for Saturating<i128>
source
impl Shl<&'_ usize> for Saturating<i128>
sourceimpl Shl<&'_ usize> for &Saturating<i128>
source
impl Shl<&'_ usize> for &Saturating<i128>
sourceimpl Shl<&'_ usize> for Saturating<isize>
source
impl Shl<&'_ usize> for Saturating<isize>
sourceimpl Shl<&'_ usize> for &Saturating<isize>
source
impl Shl<&'_ usize> for &Saturating<isize>
sourceimpl Shl<&'_ usize> for &Saturating<u16>
source
impl Shl<&'_ usize> for &Saturating<u16>
sourceimpl Shl<&'_ usize> for Saturating<u32>
source
impl Shl<&'_ usize> for Saturating<u32>
sourceimpl Shl<&'_ usize> for &Saturating<u32>
source
impl Shl<&'_ usize> for &Saturating<u32>
sourceimpl Shl<&'_ usize> for Saturating<u64>
source
impl Shl<&'_ usize> for Saturating<u64>
sourceimpl Shl<&'_ usize> for &Saturating<u64>
source
impl Shl<&'_ usize> for &Saturating<u64>
sourceimpl Shl<&'_ usize> for Saturating<u128>
source
impl Shl<&'_ usize> for Saturating<u128>
sourceimpl Shl<&'_ usize> for &Saturating<u128>
source
impl Shl<&'_ usize> for &Saturating<u128>
sourceimpl Shl<usize> for Saturating<u8>
source
impl Shl<usize> for Saturating<u8>
sourcetype Output = Saturating<u8>
type Output = Saturating<u8>
The resulting type after applying the << operator.
impl<'a> Shl<usize> for &'a Saturating<u8>
source
impl<'a> Shl<usize> for &'a Saturating<u8>
sourceimpl Shl<usize> for Saturating<usize>
source
impl Shl<usize> for Saturating<usize>
sourcetype Output = Saturating<usize>
type Output = Saturating<usize>
The resulting type after applying the << operator.
impl<'a> Shl<usize> for &'a Saturating<usize>
source
impl<'a> Shl<usize> for &'a Saturating<usize>
sourceimpl Shl<usize> for Saturating<i8>
source
impl Shl<usize> for Saturating<i8>
sourcetype Output = Saturating<i8>
type Output = Saturating<i8>
The resulting type after applying the << operator.
impl<'a> Shl<usize> for &'a Saturating<i8>
source
impl<'a> Shl<usize> for &'a Saturating<i8>
sourceimpl Shl<usize> for Saturating<i16>
source
impl Shl<usize> for Saturating<i16>
sourcetype Output = Saturating<i16>
type Output = Saturating<i16>
The resulting type after applying the << operator.
impl<'a> Shl<usize> for &'a Saturating<i16>
source
impl<'a> Shl<usize> for &'a Saturating<i16>
sourceimpl Shl<usize> for Saturating<i32>
source
impl Shl<usize> for Saturating<i32>
sourcetype Output = Saturating<i32>
type Output = Saturating<i32>
The resulting type after applying the << operator.
impl<'a> Shl<usize> for &'a Saturating<i32>
source
impl<'a> Shl<usize> for &'a Saturating<i32>
sourceimpl Shl<usize> for Saturating<i64>
source
impl Shl<usize> for Saturating<i64>
sourcetype Output = Saturating<i64>
type Output = Saturating<i64>
The resulting type after applying the << operator.
impl<'a> Shl<usize> for &'a Saturating<i64>
source
impl<'a> Shl<usize> for &'a Saturating<i64>
sourceimpl Shl<usize> for Saturating<u16>
source
impl Shl<usize> for Saturating<u16>
sourcetype Output = Saturating<u16>
type Output = Saturating<u16>
The resulting type after applying the << operator.
impl Shl<usize> for Saturating<i128>
source
impl Shl<usize> for Saturating<i128>
sourcetype Output = Saturating<i128>
type Output = Saturating<i128>
The resulting type after applying the << operator.
impl<'a> Shl<usize> for &'a Saturating<i128>
source
impl<'a> Shl<usize> for &'a Saturating<i128>
sourceimpl Shl<usize> for Saturating<isize>
source
impl Shl<usize> for Saturating<isize>
sourcetype Output = Saturating<isize>
type Output = Saturating<isize>
The resulting type after applying the << operator.
impl<'a> Shl<usize> for &'a Saturating<isize>
source
impl<'a> Shl<usize> for &'a Saturating<isize>
sourceimpl<'a> Shl<usize> for &'a Saturating<u16>
source
impl<'a> Shl<usize> for &'a Saturating<u16>
sourceimpl Shl<usize> for Saturating<u32>
source
impl Shl<usize> for Saturating<u32>
sourcetype Output = Saturating<u32>
type Output = Saturating<u32>
The resulting type after applying the << operator.
impl<'a> Shl<usize> for &'a Saturating<u32>
source
impl<'a> Shl<usize> for &'a Saturating<u32>
sourceimpl Shl<usize> for Saturating<u64>
source
impl Shl<usize> for Saturating<u64>
sourcetype Output = Saturating<u64>
type Output = Saturating<u64>
The resulting type after applying the << operator.
impl<'a> Shl<usize> for &'a Saturating<u64>
source
impl<'a> Shl<usize> for &'a Saturating<u64>
sourceimpl Shl<usize> for Saturating<u128>
source
impl Shl<usize> for Saturating<u128>
sourcetype Output = Saturating<u128>
type Output = Saturating<u128>
The resulting type after applying the << operator.
impl<'a> Shl<usize> for &'a Saturating<u128>
source
impl<'a> Shl<usize> for &'a Saturating<u128>
sourceimpl ShlAssign<&'_ i128> for usize
1.22.0 (const: unstable) · source
impl ShlAssign<&'_ i128> for usize
1.22.0 (const: unstable) · sourcefn shl_assign(&mut self, other: &i128)
const: unstable · source
fn shl_assign(&mut self, other: &i128)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ i16> for usize
1.22.0 (const: unstable) · source
impl ShlAssign<&'_ i16> for usize
1.22.0 (const: unstable) · sourcefn shl_assign(&mut self, other: &i16)
const: unstable · source
fn shl_assign(&mut self, other: &i16)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ i32> for usize
1.22.0 (const: unstable) · source
impl ShlAssign<&'_ i32> for usize
1.22.0 (const: unstable) · sourcefn shl_assign(&mut self, other: &i32)
const: unstable · source
fn shl_assign(&mut self, other: &i32)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ i64> for usize
1.22.0 (const: unstable) · source
impl ShlAssign<&'_ i64> for usize
1.22.0 (const: unstable) · sourcefn shl_assign(&mut self, other: &i64)
const: unstable · source
fn shl_assign(&mut self, other: &i64)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ i8> for usize
1.22.0 (const: unstable) · source
impl ShlAssign<&'_ i8> for usize
1.22.0 (const: unstable) · sourcefn shl_assign(&mut self, other: &i8)
const: unstable · source
fn shl_assign(&mut self, other: &i8)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ isize> for usize
1.22.0 (const: unstable) · source
impl ShlAssign<&'_ isize> for usize
1.22.0 (const: unstable) · sourcefn shl_assign(&mut self, other: &isize)
const: unstable · source
fn shl_assign(&mut self, other: &isize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ u128> for usize
1.22.0 (const: unstable) · source
impl ShlAssign<&'_ u128> for usize
1.22.0 (const: unstable) · sourcefn shl_assign(&mut self, other: &u128)
const: unstable · source
fn shl_assign(&mut self, other: &u128)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ u16> for usize
1.22.0 (const: unstable) · source
impl ShlAssign<&'_ u16> for usize
1.22.0 (const: unstable) · sourcefn shl_assign(&mut self, other: &u16)
const: unstable · source
fn shl_assign(&mut self, other: &u16)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ u32> for usize
1.22.0 (const: unstable) · source
impl ShlAssign<&'_ u32> for usize
1.22.0 (const: unstable) · sourcefn shl_assign(&mut self, other: &u32)
const: unstable · source
fn shl_assign(&mut self, other: &u32)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ u64> for usize
1.22.0 (const: unstable) · source
impl ShlAssign<&'_ u64> for usize
1.22.0 (const: unstable) · sourcefn shl_assign(&mut self, other: &u64)
const: unstable · source
fn shl_assign(&mut self, other: &u64)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ u8> for usize
1.22.0 (const: unstable) · source
impl ShlAssign<&'_ u8> for usize
1.22.0 (const: unstable) · sourcefn shl_assign(&mut self, other: &u8)
const: unstable · source
fn shl_assign(&mut self, other: &u8)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ usize> for Saturating<u8>
1.22.0 · source
impl ShlAssign<&'_ usize> for Saturating<u8>
1.22.0 · sourcefn shl_assign(&mut self, other: &usize)
source
fn shl_assign(&mut self, other: &usize)
sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ usize> for Saturating<u16>
1.22.0 · source
impl ShlAssign<&'_ usize> for Saturating<u16>
1.22.0 · sourcefn shl_assign(&mut self, other: &usize)
source
fn shl_assign(&mut self, other: &usize)
sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ usize> for Saturating<i128>
1.22.0 · source
impl ShlAssign<&'_ usize> for Saturating<i128>
1.22.0 · sourcefn shl_assign(&mut self, other: &usize)
source
fn shl_assign(&mut self, other: &usize)
sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ usize> for Saturating<isize>
1.22.0 · source
impl ShlAssign<&'_ usize> for Saturating<isize>
1.22.0 · sourcefn shl_assign(&mut self, other: &usize)
source
fn shl_assign(&mut self, other: &usize)
sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ usize> for Wrapping<u8>
1.22.0 (const: unstable) · source
impl ShlAssign<&'_ usize> for Wrapping<u8>
1.22.0 (const: unstable) · sourcefn shl_assign(&mut self, other: &usize)
const: unstable · source
fn shl_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ usize> for Wrapping<u16>
1.22.0 (const: unstable) · source
impl ShlAssign<&'_ usize> for Wrapping<u16>
1.22.0 (const: unstable) · sourcefn shl_assign(&mut self, other: &usize)
const: unstable · source
fn shl_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ usize> for Wrapping<u32>
1.22.0 (const: unstable) · source
impl ShlAssign<&'_ usize> for Wrapping<u32>
1.22.0 (const: unstable) · sourcefn shl_assign(&mut self, other: &usize)
const: unstable · source
fn shl_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ usize> for Wrapping<u64>
1.22.0 (const: unstable) · source
impl ShlAssign<&'_ usize> for Wrapping<u64>
1.22.0 (const: unstable) · sourcefn shl_assign(&mut self, other: &usize)
const: unstable · source
fn shl_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ usize> for Wrapping<u128>
1.22.0 (const: unstable) · source
impl ShlAssign<&'_ usize> for Wrapping<u128>
1.22.0 (const: unstable) · sourcefn shl_assign(&mut self, other: &usize)
const: unstable · source
fn shl_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ usize> for Wrapping<usize>
1.22.0 (const: unstable) · source
impl ShlAssign<&'_ usize> for Wrapping<usize>
1.22.0 (const: unstable) · sourcefn shl_assign(&mut self, other: &usize)
const: unstable · source
fn shl_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ usize> for Wrapping<i8>
1.22.0 (const: unstable) · source
impl ShlAssign<&'_ usize> for Wrapping<i8>
1.22.0 (const: unstable) · sourcefn shl_assign(&mut self, other: &usize)
const: unstable · source
fn shl_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ usize> for Wrapping<i16>
1.22.0 (const: unstable) · source
impl ShlAssign<&'_ usize> for Wrapping<i16>
1.22.0 (const: unstable) · sourcefn shl_assign(&mut self, other: &usize)
const: unstable · source
fn shl_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ usize> for Saturating<u32>
1.22.0 · source
impl ShlAssign<&'_ usize> for Saturating<u32>
1.22.0 · sourcefn shl_assign(&mut self, other: &usize)
source
fn shl_assign(&mut self, other: &usize)
sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ usize> for Wrapping<i32>
1.22.0 (const: unstable) · source
impl ShlAssign<&'_ usize> for Wrapping<i32>
1.22.0 (const: unstable) · sourcefn shl_assign(&mut self, other: &usize)
const: unstable · source
fn shl_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ usize> for Wrapping<i64>
1.22.0 (const: unstable) · source
impl ShlAssign<&'_ usize> for Wrapping<i64>
1.22.0 (const: unstable) · sourcefn shl_assign(&mut self, other: &usize)
const: unstable · source
fn shl_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ usize> for Wrapping<i128>
1.22.0 (const: unstable) · source
impl ShlAssign<&'_ usize> for Wrapping<i128>
1.22.0 (const: unstable) · sourcefn shl_assign(&mut self, other: &usize)
const: unstable · source
fn shl_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ usize> for Wrapping<isize>
1.22.0 (const: unstable) · source
impl ShlAssign<&'_ usize> for Wrapping<isize>
1.22.0 (const: unstable) · sourcefn shl_assign(&mut self, other: &usize)
const: unstable · source
fn shl_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ usize> for u8
1.22.0 (const: unstable) · source
impl ShlAssign<&'_ usize> for u8
1.22.0 (const: unstable) · sourcefn shl_assign(&mut self, other: &usize)
const: unstable · source
fn shl_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ usize> for u16
1.22.0 (const: unstable) · source
impl ShlAssign<&'_ usize> for u16
1.22.0 (const: unstable) · sourcefn shl_assign(&mut self, other: &usize)
const: unstable · source
fn shl_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ usize> for u32
1.22.0 (const: unstable) · source
impl ShlAssign<&'_ usize> for u32
1.22.0 (const: unstable) · sourcefn shl_assign(&mut self, other: &usize)
const: unstable · source
fn shl_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ usize> for u64
1.22.0 (const: unstable) · source
impl ShlAssign<&'_ usize> for u64
1.22.0 (const: unstable) · sourcefn shl_assign(&mut self, other: &usize)
const: unstable · source
fn shl_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ usize> for u128
1.22.0 (const: unstable) · source
impl ShlAssign<&'_ usize> for u128
1.22.0 (const: unstable) · sourcefn shl_assign(&mut self, other: &usize)
const: unstable · source
fn shl_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ usize> for usize
1.22.0 (const: unstable) · source
impl ShlAssign<&'_ usize> for usize
1.22.0 (const: unstable) · sourcefn shl_assign(&mut self, other: &usize)
const: unstable · source
fn shl_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ usize> for Saturating<u64>
1.22.0 · source
impl ShlAssign<&'_ usize> for Saturating<u64>
1.22.0 · sourcefn shl_assign(&mut self, other: &usize)
source
fn shl_assign(&mut self, other: &usize)
sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ usize> for i8
1.22.0 (const: unstable) · source
impl ShlAssign<&'_ usize> for i8
1.22.0 (const: unstable) · sourcefn shl_assign(&mut self, other: &usize)
const: unstable · source
fn shl_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ usize> for i16
1.22.0 (const: unstable) · source
impl ShlAssign<&'_ usize> for i16
1.22.0 (const: unstable) · sourcefn shl_assign(&mut self, other: &usize)
const: unstable · source
fn shl_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ usize> for i32
1.22.0 (const: unstable) · source
impl ShlAssign<&'_ usize> for i32
1.22.0 (const: unstable) · sourcefn shl_assign(&mut self, other: &usize)
const: unstable · source
fn shl_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ usize> for i64
1.22.0 (const: unstable) · source
impl ShlAssign<&'_ usize> for i64
1.22.0 (const: unstable) · sourcefn shl_assign(&mut self, other: &usize)
const: unstable · source
fn shl_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ usize> for i128
1.22.0 (const: unstable) · source
impl ShlAssign<&'_ usize> for i128
1.22.0 (const: unstable) · sourcefn shl_assign(&mut self, other: &usize)
const: unstable · source
fn shl_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ usize> for isize
1.22.0 (const: unstable) · source
impl ShlAssign<&'_ usize> for isize
1.22.0 (const: unstable) · sourcefn shl_assign(&mut self, other: &usize)
const: unstable · source
fn shl_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ usize> for Saturating<u128>
1.22.0 · source
impl ShlAssign<&'_ usize> for Saturating<u128>
1.22.0 · sourcefn shl_assign(&mut self, other: &usize)
source
fn shl_assign(&mut self, other: &usize)
sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ usize> for Saturating<usize>
1.22.0 · source
impl ShlAssign<&'_ usize> for Saturating<usize>
1.22.0 · sourcefn shl_assign(&mut self, other: &usize)
source
fn shl_assign(&mut self, other: &usize)
sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ usize> for Saturating<i8>
1.22.0 · source
impl ShlAssign<&'_ usize> for Saturating<i8>
1.22.0 · sourcefn shl_assign(&mut self, other: &usize)
source
fn shl_assign(&mut self, other: &usize)
sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ usize> for Saturating<i16>
1.22.0 · source
impl ShlAssign<&'_ usize> for Saturating<i16>
1.22.0 · sourcefn shl_assign(&mut self, other: &usize)
source
fn shl_assign(&mut self, other: &usize)
sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ usize> for Saturating<i32>
1.22.0 · source
impl ShlAssign<&'_ usize> for Saturating<i32>
1.22.0 · sourcefn shl_assign(&mut self, other: &usize)
source
fn shl_assign(&mut self, other: &usize)
sourcePerforms the <<= operation. Read more
impl ShlAssign<&'_ usize> for Saturating<i64>
1.22.0 · source
impl ShlAssign<&'_ usize> for Saturating<i64>
1.22.0 · sourcefn shl_assign(&mut self, other: &usize)
source
fn shl_assign(&mut self, other: &usize)
sourcePerforms the <<= operation. Read more
impl ShlAssign<i128> for usize
1.8.0 (const: unstable) · source
impl ShlAssign<i128> for usize
1.8.0 (const: unstable) · sourcefn shl_assign(&mut self, other: i128)
const: unstable · source
fn shl_assign(&mut self, other: i128)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<i16> for usize
1.8.0 (const: unstable) · source
impl ShlAssign<i16> for usize
1.8.0 (const: unstable) · sourcefn shl_assign(&mut self, other: i16)
const: unstable · source
fn shl_assign(&mut self, other: i16)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<i32> for usize
1.8.0 (const: unstable) · source
impl ShlAssign<i32> for usize
1.8.0 (const: unstable) · sourcefn shl_assign(&mut self, other: i32)
const: unstable · source
fn shl_assign(&mut self, other: i32)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<i64> for usize
1.8.0 (const: unstable) · source
impl ShlAssign<i64> for usize
1.8.0 (const: unstable) · sourcefn shl_assign(&mut self, other: i64)
const: unstable · source
fn shl_assign(&mut self, other: i64)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<i8> for usize
1.8.0 (const: unstable) · source
impl ShlAssign<i8> for usize
1.8.0 (const: unstable) · sourcefn shl_assign(&mut self, other: i8)
const: unstable · source
fn shl_assign(&mut self, other: i8)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<isize> for usize
1.8.0 (const: unstable) · source
impl ShlAssign<isize> for usize
1.8.0 (const: unstable) · sourcefn shl_assign(&mut self, other: isize)
const: unstable · source
fn shl_assign(&mut self, other: isize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<u128> for usize
1.8.0 (const: unstable) · source
impl ShlAssign<u128> for usize
1.8.0 (const: unstable) · sourcefn shl_assign(&mut self, other: u128)
const: unstable · source
fn shl_assign(&mut self, other: u128)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<u16> for usize
1.8.0 (const: unstable) · source
impl ShlAssign<u16> for usize
1.8.0 (const: unstable) · sourcefn shl_assign(&mut self, other: u16)
const: unstable · source
fn shl_assign(&mut self, other: u16)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<u32> for usize
1.8.0 (const: unstable) · source
impl ShlAssign<u32> for usize
1.8.0 (const: unstable) · sourcefn shl_assign(&mut self, other: u32)
const: unstable · source
fn shl_assign(&mut self, other: u32)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<u64> for usize
1.8.0 (const: unstable) · source
impl ShlAssign<u64> for usize
1.8.0 (const: unstable) · sourcefn shl_assign(&mut self, other: u64)
const: unstable · source
fn shl_assign(&mut self, other: u64)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<u8> for usize
1.8.0 (const: unstable) · source
impl ShlAssign<u8> for usize
1.8.0 (const: unstable) · sourcefn shl_assign(&mut self, other: u8)
const: unstable · source
fn shl_assign(&mut self, other: u8)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<usize> for Saturating<u8>
source
impl ShlAssign<usize> for Saturating<u8>
sourcefn shl_assign(&mut self, other: usize)
source
fn shl_assign(&mut self, other: usize)
sourcePerforms the <<= operation. Read more
impl ShlAssign<usize> for Saturating<u16>
source
impl ShlAssign<usize> for Saturating<u16>
sourcefn shl_assign(&mut self, other: usize)
source
fn shl_assign(&mut self, other: usize)
sourcePerforms the <<= operation. Read more
impl ShlAssign<usize> for Saturating<i128>
source
impl ShlAssign<usize> for Saturating<i128>
sourcefn shl_assign(&mut self, other: usize)
source
fn shl_assign(&mut self, other: usize)
sourcePerforms the <<= operation. Read more
impl ShlAssign<usize> for Saturating<isize>
source
impl ShlAssign<usize> for Saturating<isize>
sourcefn shl_assign(&mut self, other: usize)
source
fn shl_assign(&mut self, other: usize)
sourcePerforms the <<= operation. Read more
impl ShlAssign<usize> for Wrapping<u8>
1.8.0 (const: unstable) · source
impl ShlAssign<usize> for Wrapping<u8>
1.8.0 (const: unstable) · sourcefn shl_assign(&mut self, other: usize)
const: unstable · source
fn shl_assign(&mut self, other: usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<usize> for Wrapping<u16>
1.8.0 (const: unstable) · source
impl ShlAssign<usize> for Wrapping<u16>
1.8.0 (const: unstable) · sourcefn shl_assign(&mut self, other: usize)
const: unstable · source
fn shl_assign(&mut self, other: usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<usize> for Wrapping<u32>
1.8.0 (const: unstable) · source
impl ShlAssign<usize> for Wrapping<u32>
1.8.0 (const: unstable) · sourcefn shl_assign(&mut self, other: usize)
const: unstable · source
fn shl_assign(&mut self, other: usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<usize> for Wrapping<u64>
1.8.0 (const: unstable) · source
impl ShlAssign<usize> for Wrapping<u64>
1.8.0 (const: unstable) · sourcefn shl_assign(&mut self, other: usize)
const: unstable · source
fn shl_assign(&mut self, other: usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<usize> for Wrapping<u128>
1.8.0 (const: unstable) · source
impl ShlAssign<usize> for Wrapping<u128>
1.8.0 (const: unstable) · sourcefn shl_assign(&mut self, other: usize)
const: unstable · source
fn shl_assign(&mut self, other: usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<usize> for Wrapping<usize>
1.8.0 (const: unstable) · source
impl ShlAssign<usize> for Wrapping<usize>
1.8.0 (const: unstable) · sourcefn shl_assign(&mut self, other: usize)
const: unstable · source
fn shl_assign(&mut self, other: usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<usize> for Wrapping<i8>
1.8.0 (const: unstable) · source
impl ShlAssign<usize> for Wrapping<i8>
1.8.0 (const: unstable) · sourcefn shl_assign(&mut self, other: usize)
const: unstable · source
fn shl_assign(&mut self, other: usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<usize> for Wrapping<i16>
1.8.0 (const: unstable) · source
impl ShlAssign<usize> for Wrapping<i16>
1.8.0 (const: unstable) · sourcefn shl_assign(&mut self, other: usize)
const: unstable · source
fn shl_assign(&mut self, other: usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<usize> for Saturating<u32>
source
impl ShlAssign<usize> for Saturating<u32>
sourcefn shl_assign(&mut self, other: usize)
source
fn shl_assign(&mut self, other: usize)
sourcePerforms the <<= operation. Read more
impl ShlAssign<usize> for Wrapping<i32>
1.8.0 (const: unstable) · source
impl ShlAssign<usize> for Wrapping<i32>
1.8.0 (const: unstable) · sourcefn shl_assign(&mut self, other: usize)
const: unstable · source
fn shl_assign(&mut self, other: usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<usize> for Wrapping<i64>
1.8.0 (const: unstable) · source
impl ShlAssign<usize> for Wrapping<i64>
1.8.0 (const: unstable) · sourcefn shl_assign(&mut self, other: usize)
const: unstable · source
fn shl_assign(&mut self, other: usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<usize> for Wrapping<i128>
1.8.0 (const: unstable) · source
impl ShlAssign<usize> for Wrapping<i128>
1.8.0 (const: unstable) · sourcefn shl_assign(&mut self, other: usize)
const: unstable · source
fn shl_assign(&mut self, other: usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<usize> for Wrapping<isize>
1.8.0 (const: unstable) · source
impl ShlAssign<usize> for Wrapping<isize>
1.8.0 (const: unstable) · sourcefn shl_assign(&mut self, other: usize)
const: unstable · source
fn shl_assign(&mut self, other: usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<usize> for u8
1.8.0 (const: unstable) · source
impl ShlAssign<usize> for u8
1.8.0 (const: unstable) · sourcefn shl_assign(&mut self, other: usize)
const: unstable · source
fn shl_assign(&mut self, other: usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<usize> for u16
1.8.0 (const: unstable) · source
impl ShlAssign<usize> for u16
1.8.0 (const: unstable) · sourcefn shl_assign(&mut self, other: usize)
const: unstable · source
fn shl_assign(&mut self, other: usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<usize> for u32
1.8.0 (const: unstable) · source
impl ShlAssign<usize> for u32
1.8.0 (const: unstable) · sourcefn shl_assign(&mut self, other: usize)
const: unstable · source
fn shl_assign(&mut self, other: usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<usize> for u64
1.8.0 (const: unstable) · source
impl ShlAssign<usize> for u64
1.8.0 (const: unstable) · sourcefn shl_assign(&mut self, other: usize)
const: unstable · source
fn shl_assign(&mut self, other: usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<usize> for u128
1.8.0 (const: unstable) · source
impl ShlAssign<usize> for u128
1.8.0 (const: unstable) · sourcefn shl_assign(&mut self, other: usize)
const: unstable · source
fn shl_assign(&mut self, other: usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<usize> for usize
1.8.0 (const: unstable) · source
impl ShlAssign<usize> for usize
1.8.0 (const: unstable) · sourcefn shl_assign(&mut self, other: usize)
const: unstable · source
fn shl_assign(&mut self, other: usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<usize> for Saturating<u64>
source
impl ShlAssign<usize> for Saturating<u64>
sourcefn shl_assign(&mut self, other: usize)
source
fn shl_assign(&mut self, other: usize)
sourcePerforms the <<= operation. Read more
impl ShlAssign<usize> for i8
1.8.0 (const: unstable) · source
impl ShlAssign<usize> for i8
1.8.0 (const: unstable) · sourcefn shl_assign(&mut self, other: usize)
const: unstable · source
fn shl_assign(&mut self, other: usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<usize> for i16
1.8.0 (const: unstable) · source
impl ShlAssign<usize> for i16
1.8.0 (const: unstable) · sourcefn shl_assign(&mut self, other: usize)
const: unstable · source
fn shl_assign(&mut self, other: usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<usize> for i32
1.8.0 (const: unstable) · source
impl ShlAssign<usize> for i32
1.8.0 (const: unstable) · sourcefn shl_assign(&mut self, other: usize)
const: unstable · source
fn shl_assign(&mut self, other: usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<usize> for i64
1.8.0 (const: unstable) · source
impl ShlAssign<usize> for i64
1.8.0 (const: unstable) · sourcefn shl_assign(&mut self, other: usize)
const: unstable · source
fn shl_assign(&mut self, other: usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<usize> for i128
1.8.0 (const: unstable) · source
impl ShlAssign<usize> for i128
1.8.0 (const: unstable) · sourcefn shl_assign(&mut self, other: usize)
const: unstable · source
fn shl_assign(&mut self, other: usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<usize> for isize
1.8.0 (const: unstable) · source
impl ShlAssign<usize> for isize
1.8.0 (const: unstable) · sourcefn shl_assign(&mut self, other: usize)
const: unstable · source
fn shl_assign(&mut self, other: usize)
const: unstable · sourcePerforms the <<= operation. Read more
impl ShlAssign<usize> for Saturating<u128>
source
impl ShlAssign<usize> for Saturating<u128>
sourcefn shl_assign(&mut self, other: usize)
source
fn shl_assign(&mut self, other: usize)
sourcePerforms the <<= operation. Read more
impl ShlAssign<usize> for Saturating<usize>
source
impl ShlAssign<usize> for Saturating<usize>
sourcefn shl_assign(&mut self, other: usize)
source
fn shl_assign(&mut self, other: usize)
sourcePerforms the <<= operation. Read more
impl ShlAssign<usize> for Saturating<i8>
source
impl ShlAssign<usize> for Saturating<i8>
sourcefn shl_assign(&mut self, other: usize)
source
fn shl_assign(&mut self, other: usize)
sourcePerforms the <<= operation. Read more
impl ShlAssign<usize> for Saturating<i16>
source
impl ShlAssign<usize> for Saturating<i16>
sourcefn shl_assign(&mut self, other: usize)
source
fn shl_assign(&mut self, other: usize)
sourcePerforms the <<= operation. Read more
impl ShlAssign<usize> for Saturating<i32>
source
impl ShlAssign<usize> for Saturating<i32>
sourcefn shl_assign(&mut self, other: usize)
source
fn shl_assign(&mut self, other: usize)
sourcePerforms the <<= operation. Read more
impl ShlAssign<usize> for Saturating<i64>
source
impl ShlAssign<usize> for Saturating<i64>
sourcefn shl_assign(&mut self, other: usize)
source
fn shl_assign(&mut self, other: usize)
sourcePerforms the <<= operation. Read more
impl Shr<&'_ usize> for Saturating<u8>
source
impl Shr<&'_ usize> for Saturating<u8>
sourceimpl Shr<&'_ usize> for &Saturating<u8>
source
impl Shr<&'_ usize> for &Saturating<u8>
sourceimpl Shr<&'_ usize> for Saturating<usize>
source
impl Shr<&'_ usize> for Saturating<usize>
sourceimpl Shr<&'_ usize> for &Saturating<usize>
source
impl Shr<&'_ usize> for &Saturating<usize>
sourceimpl Shr<&'_ usize> for Saturating<i8>
source
impl Shr<&'_ usize> for Saturating<i8>
sourceimpl Shr<&'_ usize> for &Saturating<i8>
source
impl Shr<&'_ usize> for &Saturating<i8>
sourceimpl Shr<&'_ usize> for Saturating<i16>
source
impl Shr<&'_ usize> for Saturating<i16>
sourceimpl Shr<&'_ usize> for &Saturating<i16>
source
impl Shr<&'_ usize> for &Saturating<i16>
sourceimpl Shr<&'_ usize> for Saturating<i32>
source
impl Shr<&'_ usize> for Saturating<i32>
sourceimpl Shr<&'_ usize> for &Saturating<i32>
source
impl Shr<&'_ usize> for &Saturating<i32>
sourceimpl Shr<&'_ usize> for Saturating<i64>
source
impl Shr<&'_ usize> for Saturating<i64>
sourceimpl Shr<&'_ usize> for &Saturating<i64>
source
impl Shr<&'_ usize> for &Saturating<i64>
sourceimpl Shr<&'_ usize> for Saturating<u16>
source
impl Shr<&'_ usize> for Saturating<u16>
sourceimpl Shr<&'_ usize> for Saturating<i128>
source
impl Shr<&'_ usize> for Saturating<i128>
sourceimpl Shr<&'_ usize> for &Saturating<i128>
source
impl Shr<&'_ usize> for &Saturating<i128>
sourceimpl Shr<&'_ usize> for Saturating<isize>
source
impl Shr<&'_ usize> for Saturating<isize>
sourceimpl Shr<&'_ usize> for &Saturating<isize>
source
impl Shr<&'_ usize> for &Saturating<isize>
sourceimpl Shr<&'_ usize> for &Saturating<u16>
source
impl Shr<&'_ usize> for &Saturating<u16>
sourceimpl Shr<&'_ usize> for Saturating<u32>
source
impl Shr<&'_ usize> for Saturating<u32>
sourceimpl Shr<&'_ usize> for &Saturating<u32>
source
impl Shr<&'_ usize> for &Saturating<u32>
sourceimpl Shr<&'_ usize> for Saturating<u64>
source
impl Shr<&'_ usize> for Saturating<u64>
sourceimpl Shr<&'_ usize> for &Saturating<u64>
source
impl Shr<&'_ usize> for &Saturating<u64>
sourceimpl Shr<&'_ usize> for Saturating<u128>
source
impl Shr<&'_ usize> for Saturating<u128>
sourceimpl Shr<&'_ usize> for &Saturating<u128>
source
impl Shr<&'_ usize> for &Saturating<u128>
sourceimpl Shr<usize> for Saturating<u8>
source
impl Shr<usize> for Saturating<u8>
sourcetype Output = Saturating<u8>
type Output = Saturating<u8>
The resulting type after applying the >> operator.
impl<'a> Shr<usize> for &'a Saturating<u8>
source
impl<'a> Shr<usize> for &'a Saturating<u8>
sourceimpl Shr<usize> for Saturating<usize>
source
impl Shr<usize> for Saturating<usize>
sourcetype Output = Saturating<usize>
type Output = Saturating<usize>
The resulting type after applying the >> operator.
impl<'a> Shr<usize> for &'a Saturating<usize>
source
impl<'a> Shr<usize> for &'a Saturating<usize>
sourceimpl Shr<usize> for Saturating<i8>
source
impl Shr<usize> for Saturating<i8>
sourcetype Output = Saturating<i8>
type Output = Saturating<i8>
The resulting type after applying the >> operator.
impl<'a> Shr<usize> for &'a Saturating<i8>
source
impl<'a> Shr<usize> for &'a Saturating<i8>
sourceimpl Shr<usize> for Saturating<i16>
source
impl Shr<usize> for Saturating<i16>
sourcetype Output = Saturating<i16>
type Output = Saturating<i16>
The resulting type after applying the >> operator.
impl<'a> Shr<usize> for &'a Saturating<i16>
source
impl<'a> Shr<usize> for &'a Saturating<i16>
sourceimpl Shr<usize> for Saturating<i32>
source
impl Shr<usize> for Saturating<i32>
sourcetype Output = Saturating<i32>
type Output = Saturating<i32>
The resulting type after applying the >> operator.
impl<'a> Shr<usize> for &'a Saturating<i32>
source
impl<'a> Shr<usize> for &'a Saturating<i32>
sourceimpl Shr<usize> for Saturating<i64>
source
impl Shr<usize> for Saturating<i64>
sourcetype Output = Saturating<i64>
type Output = Saturating<i64>
The resulting type after applying the >> operator.
impl<'a> Shr<usize> for &'a Saturating<i64>
source
impl<'a> Shr<usize> for &'a Saturating<i64>
sourceimpl Shr<usize> for Saturating<u16>
source
impl Shr<usize> for Saturating<u16>
sourcetype Output = Saturating<u16>
type Output = Saturating<u16>
The resulting type after applying the >> operator.
impl Shr<usize> for Saturating<i128>
source
impl Shr<usize> for Saturating<i128>
sourcetype Output = Saturating<i128>
type Output = Saturating<i128>
The resulting type after applying the >> operator.
impl<'a> Shr<usize> for &'a Saturating<i128>
source
impl<'a> Shr<usize> for &'a Saturating<i128>
sourceimpl Shr<usize> for Saturating<isize>
source
impl Shr<usize> for Saturating<isize>
sourcetype Output = Saturating<isize>
type Output = Saturating<isize>
The resulting type after applying the >> operator.
impl<'a> Shr<usize> for &'a Saturating<isize>
source
impl<'a> Shr<usize> for &'a Saturating<isize>
sourceimpl<'a> Shr<usize> for &'a Saturating<u16>
source
impl<'a> Shr<usize> for &'a Saturating<u16>
sourceimpl Shr<usize> for Saturating<u32>
source
impl Shr<usize> for Saturating<u32>
sourcetype Output = Saturating<u32>
type Output = Saturating<u32>
The resulting type after applying the >> operator.
impl<'a> Shr<usize> for &'a Saturating<u32>
source
impl<'a> Shr<usize> for &'a Saturating<u32>
sourceimpl Shr<usize> for Saturating<u64>
source
impl Shr<usize> for Saturating<u64>
sourcetype Output = Saturating<u64>
type Output = Saturating<u64>
The resulting type after applying the >> operator.
impl<'a> Shr<usize> for &'a Saturating<u64>
source
impl<'a> Shr<usize> for &'a Saturating<u64>
sourceimpl Shr<usize> for Saturating<u128>
source
impl Shr<usize> for Saturating<u128>
sourcetype Output = Saturating<u128>
type Output = Saturating<u128>
The resulting type after applying the >> operator.
impl<'a> Shr<usize> for &'a Saturating<u128>
source
impl<'a> Shr<usize> for &'a Saturating<u128>
sourceimpl ShrAssign<&'_ i128> for usize
1.22.0 (const: unstable) · source
impl ShrAssign<&'_ i128> for usize
1.22.0 (const: unstable) · sourcefn shr_assign(&mut self, other: &i128)
const: unstable · source
fn shr_assign(&mut self, other: &i128)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ i16> for usize
1.22.0 (const: unstable) · source
impl ShrAssign<&'_ i16> for usize
1.22.0 (const: unstable) · sourcefn shr_assign(&mut self, other: &i16)
const: unstable · source
fn shr_assign(&mut self, other: &i16)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ i32> for usize
1.22.0 (const: unstable) · source
impl ShrAssign<&'_ i32> for usize
1.22.0 (const: unstable) · sourcefn shr_assign(&mut self, other: &i32)
const: unstable · source
fn shr_assign(&mut self, other: &i32)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ i64> for usize
1.22.0 (const: unstable) · source
impl ShrAssign<&'_ i64> for usize
1.22.0 (const: unstable) · sourcefn shr_assign(&mut self, other: &i64)
const: unstable · source
fn shr_assign(&mut self, other: &i64)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ i8> for usize
1.22.0 (const: unstable) · source
impl ShrAssign<&'_ i8> for usize
1.22.0 (const: unstable) · sourcefn shr_assign(&mut self, other: &i8)
const: unstable · source
fn shr_assign(&mut self, other: &i8)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ isize> for usize
1.22.0 (const: unstable) · source
impl ShrAssign<&'_ isize> for usize
1.22.0 (const: unstable) · sourcefn shr_assign(&mut self, other: &isize)
const: unstable · source
fn shr_assign(&mut self, other: &isize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ u128> for usize
1.22.0 (const: unstable) · source
impl ShrAssign<&'_ u128> for usize
1.22.0 (const: unstable) · sourcefn shr_assign(&mut self, other: &u128)
const: unstable · source
fn shr_assign(&mut self, other: &u128)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ u16> for usize
1.22.0 (const: unstable) · source
impl ShrAssign<&'_ u16> for usize
1.22.0 (const: unstable) · sourcefn shr_assign(&mut self, other: &u16)
const: unstable · source
fn shr_assign(&mut self, other: &u16)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ u32> for usize
1.22.0 (const: unstable) · source
impl ShrAssign<&'_ u32> for usize
1.22.0 (const: unstable) · sourcefn shr_assign(&mut self, other: &u32)
const: unstable · source
fn shr_assign(&mut self, other: &u32)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ u64> for usize
1.22.0 (const: unstable) · source
impl ShrAssign<&'_ u64> for usize
1.22.0 (const: unstable) · sourcefn shr_assign(&mut self, other: &u64)
const: unstable · source
fn shr_assign(&mut self, other: &u64)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ u8> for usize
1.22.0 (const: unstable) · source
impl ShrAssign<&'_ u8> for usize
1.22.0 (const: unstable) · sourcefn shr_assign(&mut self, other: &u8)
const: unstable · source
fn shr_assign(&mut self, other: &u8)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ usize> for Saturating<u8>
1.22.0 · source
impl ShrAssign<&'_ usize> for Saturating<u8>
1.22.0 · sourcefn shr_assign(&mut self, other: &usize)
source
fn shr_assign(&mut self, other: &usize)
sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ usize> for Saturating<u16>
1.22.0 · source
impl ShrAssign<&'_ usize> for Saturating<u16>
1.22.0 · sourcefn shr_assign(&mut self, other: &usize)
source
fn shr_assign(&mut self, other: &usize)
sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ usize> for Saturating<i128>
1.22.0 · source
impl ShrAssign<&'_ usize> for Saturating<i128>
1.22.0 · sourcefn shr_assign(&mut self, other: &usize)
source
fn shr_assign(&mut self, other: &usize)
sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ usize> for Saturating<isize>
1.22.0 · source
impl ShrAssign<&'_ usize> for Saturating<isize>
1.22.0 · sourcefn shr_assign(&mut self, other: &usize)
source
fn shr_assign(&mut self, other: &usize)
sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ usize> for Wrapping<u8>
1.22.0 (const: unstable) · source
impl ShrAssign<&'_ usize> for Wrapping<u8>
1.22.0 (const: unstable) · sourcefn shr_assign(&mut self, other: &usize)
const: unstable · source
fn shr_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ usize> for Wrapping<u16>
1.22.0 (const: unstable) · source
impl ShrAssign<&'_ usize> for Wrapping<u16>
1.22.0 (const: unstable) · sourcefn shr_assign(&mut self, other: &usize)
const: unstable · source
fn shr_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ usize> for Wrapping<u32>
1.22.0 (const: unstable) · source
impl ShrAssign<&'_ usize> for Wrapping<u32>
1.22.0 (const: unstable) · sourcefn shr_assign(&mut self, other: &usize)
const: unstable · source
fn shr_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ usize> for Wrapping<u64>
1.22.0 (const: unstable) · source
impl ShrAssign<&'_ usize> for Wrapping<u64>
1.22.0 (const: unstable) · sourcefn shr_assign(&mut self, other: &usize)
const: unstable · source
fn shr_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ usize> for Wrapping<u128>
1.22.0 (const: unstable) · source
impl ShrAssign<&'_ usize> for Wrapping<u128>
1.22.0 (const: unstable) · sourcefn shr_assign(&mut self, other: &usize)
const: unstable · source
fn shr_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ usize> for Wrapping<usize>
1.22.0 (const: unstable) · source
impl ShrAssign<&'_ usize> for Wrapping<usize>
1.22.0 (const: unstable) · sourcefn shr_assign(&mut self, other: &usize)
const: unstable · source
fn shr_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ usize> for Wrapping<i8>
1.22.0 (const: unstable) · source
impl ShrAssign<&'_ usize> for Wrapping<i8>
1.22.0 (const: unstable) · sourcefn shr_assign(&mut self, other: &usize)
const: unstable · source
fn shr_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ usize> for Wrapping<i16>
1.22.0 (const: unstable) · source
impl ShrAssign<&'_ usize> for Wrapping<i16>
1.22.0 (const: unstable) · sourcefn shr_assign(&mut self, other: &usize)
const: unstable · source
fn shr_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ usize> for Saturating<u32>
1.22.0 · source
impl ShrAssign<&'_ usize> for Saturating<u32>
1.22.0 · sourcefn shr_assign(&mut self, other: &usize)
source
fn shr_assign(&mut self, other: &usize)
sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ usize> for Wrapping<i32>
1.22.0 (const: unstable) · source
impl ShrAssign<&'_ usize> for Wrapping<i32>
1.22.0 (const: unstable) · sourcefn shr_assign(&mut self, other: &usize)
const: unstable · source
fn shr_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ usize> for Wrapping<i64>
1.22.0 (const: unstable) · source
impl ShrAssign<&'_ usize> for Wrapping<i64>
1.22.0 (const: unstable) · sourcefn shr_assign(&mut self, other: &usize)
const: unstable · source
fn shr_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ usize> for Wrapping<i128>
1.22.0 (const: unstable) · source
impl ShrAssign<&'_ usize> for Wrapping<i128>
1.22.0 (const: unstable) · sourcefn shr_assign(&mut self, other: &usize)
const: unstable · source
fn shr_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ usize> for Wrapping<isize>
1.22.0 (const: unstable) · source
impl ShrAssign<&'_ usize> for Wrapping<isize>
1.22.0 (const: unstable) · sourcefn shr_assign(&mut self, other: &usize)
const: unstable · source
fn shr_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ usize> for u8
1.22.0 (const: unstable) · source
impl ShrAssign<&'_ usize> for u8
1.22.0 (const: unstable) · sourcefn shr_assign(&mut self, other: &usize)
const: unstable · source
fn shr_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ usize> for u16
1.22.0 (const: unstable) · source
impl ShrAssign<&'_ usize> for u16
1.22.0 (const: unstable) · sourcefn shr_assign(&mut self, other: &usize)
const: unstable · source
fn shr_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ usize> for u32
1.22.0 (const: unstable) · source
impl ShrAssign<&'_ usize> for u32
1.22.0 (const: unstable) · sourcefn shr_assign(&mut self, other: &usize)
const: unstable · source
fn shr_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ usize> for u64
1.22.0 (const: unstable) · source
impl ShrAssign<&'_ usize> for u64
1.22.0 (const: unstable) · sourcefn shr_assign(&mut self, other: &usize)
const: unstable · source
fn shr_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ usize> for u128
1.22.0 (const: unstable) · source
impl ShrAssign<&'_ usize> for u128
1.22.0 (const: unstable) · sourcefn shr_assign(&mut self, other: &usize)
const: unstable · source
fn shr_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ usize> for usize
1.22.0 (const: unstable) · source
impl ShrAssign<&'_ usize> for usize
1.22.0 (const: unstable) · sourcefn shr_assign(&mut self, other: &usize)
const: unstable · source
fn shr_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ usize> for Saturating<u64>
1.22.0 · source
impl ShrAssign<&'_ usize> for Saturating<u64>
1.22.0 · sourcefn shr_assign(&mut self, other: &usize)
source
fn shr_assign(&mut self, other: &usize)
sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ usize> for i8
1.22.0 (const: unstable) · source
impl ShrAssign<&'_ usize> for i8
1.22.0 (const: unstable) · sourcefn shr_assign(&mut self, other: &usize)
const: unstable · source
fn shr_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ usize> for i16
1.22.0 (const: unstable) · source
impl ShrAssign<&'_ usize> for i16
1.22.0 (const: unstable) · sourcefn shr_assign(&mut self, other: &usize)
const: unstable · source
fn shr_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ usize> for i32
1.22.0 (const: unstable) · source
impl ShrAssign<&'_ usize> for i32
1.22.0 (const: unstable) · sourcefn shr_assign(&mut self, other: &usize)
const: unstable · source
fn shr_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ usize> for i64
1.22.0 (const: unstable) · source
impl ShrAssign<&'_ usize> for i64
1.22.0 (const: unstable) · sourcefn shr_assign(&mut self, other: &usize)
const: unstable · source
fn shr_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ usize> for i128
1.22.0 (const: unstable) · source
impl ShrAssign<&'_ usize> for i128
1.22.0 (const: unstable) · sourcefn shr_assign(&mut self, other: &usize)
const: unstable · source
fn shr_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ usize> for isize
1.22.0 (const: unstable) · source
impl ShrAssign<&'_ usize> for isize
1.22.0 (const: unstable) · sourcefn shr_assign(&mut self, other: &usize)
const: unstable · source
fn shr_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ usize> for Saturating<u128>
1.22.0 · source
impl ShrAssign<&'_ usize> for Saturating<u128>
1.22.0 · sourcefn shr_assign(&mut self, other: &usize)
source
fn shr_assign(&mut self, other: &usize)
sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ usize> for Saturating<usize>
1.22.0 · source
impl ShrAssign<&'_ usize> for Saturating<usize>
1.22.0 · sourcefn shr_assign(&mut self, other: &usize)
source
fn shr_assign(&mut self, other: &usize)
sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ usize> for Saturating<i8>
1.22.0 · source
impl ShrAssign<&'_ usize> for Saturating<i8>
1.22.0 · sourcefn shr_assign(&mut self, other: &usize)
source
fn shr_assign(&mut self, other: &usize)
sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ usize> for Saturating<i16>
1.22.0 · source
impl ShrAssign<&'_ usize> for Saturating<i16>
1.22.0 · sourcefn shr_assign(&mut self, other: &usize)
source
fn shr_assign(&mut self, other: &usize)
sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ usize> for Saturating<i32>
1.22.0 · source
impl ShrAssign<&'_ usize> for Saturating<i32>
1.22.0 · sourcefn shr_assign(&mut self, other: &usize)
source
fn shr_assign(&mut self, other: &usize)
sourcePerforms the >>= operation. Read more
impl ShrAssign<&'_ usize> for Saturating<i64>
1.22.0 · source
impl ShrAssign<&'_ usize> for Saturating<i64>
1.22.0 · sourcefn shr_assign(&mut self, other: &usize)
source
fn shr_assign(&mut self, other: &usize)
sourcePerforms the >>= operation. Read more
impl ShrAssign<i128> for usize
1.8.0 (const: unstable) · source
impl ShrAssign<i128> for usize
1.8.0 (const: unstable) · sourcefn shr_assign(&mut self, other: i128)
const: unstable · source
fn shr_assign(&mut self, other: i128)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<i16> for usize
1.8.0 (const: unstable) · source
impl ShrAssign<i16> for usize
1.8.0 (const: unstable) · sourcefn shr_assign(&mut self, other: i16)
const: unstable · source
fn shr_assign(&mut self, other: i16)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<i32> for usize
1.8.0 (const: unstable) · source
impl ShrAssign<i32> for usize
1.8.0 (const: unstable) · sourcefn shr_assign(&mut self, other: i32)
const: unstable · source
fn shr_assign(&mut self, other: i32)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<i64> for usize
1.8.0 (const: unstable) · source
impl ShrAssign<i64> for usize
1.8.0 (const: unstable) · sourcefn shr_assign(&mut self, other: i64)
const: unstable · source
fn shr_assign(&mut self, other: i64)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<i8> for usize
1.8.0 (const: unstable) · source
impl ShrAssign<i8> for usize
1.8.0 (const: unstable) · sourcefn shr_assign(&mut self, other: i8)
const: unstable · source
fn shr_assign(&mut self, other: i8)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<isize> for usize
1.8.0 (const: unstable) · source
impl ShrAssign<isize> for usize
1.8.0 (const: unstable) · sourcefn shr_assign(&mut self, other: isize)
const: unstable · source
fn shr_assign(&mut self, other: isize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<u128> for usize
1.8.0 (const: unstable) · source
impl ShrAssign<u128> for usize
1.8.0 (const: unstable) · sourcefn shr_assign(&mut self, other: u128)
const: unstable · source
fn shr_assign(&mut self, other: u128)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<u16> for usize
1.8.0 (const: unstable) · source
impl ShrAssign<u16> for usize
1.8.0 (const: unstable) · sourcefn shr_assign(&mut self, other: u16)
const: unstable · source
fn shr_assign(&mut self, other: u16)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<u32> for usize
1.8.0 (const: unstable) · source
impl ShrAssign<u32> for usize
1.8.0 (const: unstable) · sourcefn shr_assign(&mut self, other: u32)
const: unstable · source
fn shr_assign(&mut self, other: u32)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<u64> for usize
1.8.0 (const: unstable) · source
impl ShrAssign<u64> for usize
1.8.0 (const: unstable) · sourcefn shr_assign(&mut self, other: u64)
const: unstable · source
fn shr_assign(&mut self, other: u64)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<u8> for usize
1.8.0 (const: unstable) · source
impl ShrAssign<u8> for usize
1.8.0 (const: unstable) · sourcefn shr_assign(&mut self, other: u8)
const: unstable · source
fn shr_assign(&mut self, other: u8)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<usize> for Saturating<u8>
source
impl ShrAssign<usize> for Saturating<u8>
sourcefn shr_assign(&mut self, other: usize)
source
fn shr_assign(&mut self, other: usize)
sourcePerforms the >>= operation. Read more
impl ShrAssign<usize> for Saturating<u16>
source
impl ShrAssign<usize> for Saturating<u16>
sourcefn shr_assign(&mut self, other: usize)
source
fn shr_assign(&mut self, other: usize)
sourcePerforms the >>= operation. Read more
impl ShrAssign<usize> for Saturating<i128>
source
impl ShrAssign<usize> for Saturating<i128>
sourcefn shr_assign(&mut self, other: usize)
source
fn shr_assign(&mut self, other: usize)
sourcePerforms the >>= operation. Read more
impl ShrAssign<usize> for Saturating<isize>
source
impl ShrAssign<usize> for Saturating<isize>
sourcefn shr_assign(&mut self, other: usize)
source
fn shr_assign(&mut self, other: usize)
sourcePerforms the >>= operation. Read more
impl ShrAssign<usize> for Wrapping<u8>
1.8.0 (const: unstable) · source
impl ShrAssign<usize> for Wrapping<u8>
1.8.0 (const: unstable) · sourcefn shr_assign(&mut self, other: usize)
const: unstable · source
fn shr_assign(&mut self, other: usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<usize> for Wrapping<u16>
1.8.0 (const: unstable) · source
impl ShrAssign<usize> for Wrapping<u16>
1.8.0 (const: unstable) · sourcefn shr_assign(&mut self, other: usize)
const: unstable · source
fn shr_assign(&mut self, other: usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<usize> for Wrapping<u32>
1.8.0 (const: unstable) · source
impl ShrAssign<usize> for Wrapping<u32>
1.8.0 (const: unstable) · sourcefn shr_assign(&mut self, other: usize)
const: unstable · source
fn shr_assign(&mut self, other: usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<usize> for Wrapping<u64>
1.8.0 (const: unstable) · source
impl ShrAssign<usize> for Wrapping<u64>
1.8.0 (const: unstable) · sourcefn shr_assign(&mut self, other: usize)
const: unstable · source
fn shr_assign(&mut self, other: usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<usize> for Wrapping<u128>
1.8.0 (const: unstable) · source
impl ShrAssign<usize> for Wrapping<u128>
1.8.0 (const: unstable) · sourcefn shr_assign(&mut self, other: usize)
const: unstable · source
fn shr_assign(&mut self, other: usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<usize> for Wrapping<usize>
1.8.0 (const: unstable) · source
impl ShrAssign<usize> for Wrapping<usize>
1.8.0 (const: unstable) · sourcefn shr_assign(&mut self, other: usize)
const: unstable · source
fn shr_assign(&mut self, other: usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<usize> for Wrapping<i8>
1.8.0 (const: unstable) · source
impl ShrAssign<usize> for Wrapping<i8>
1.8.0 (const: unstable) · sourcefn shr_assign(&mut self, other: usize)
const: unstable · source
fn shr_assign(&mut self, other: usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<usize> for Wrapping<i16>
1.8.0 (const: unstable) · source
impl ShrAssign<usize> for Wrapping<i16>
1.8.0 (const: unstable) · sourcefn shr_assign(&mut self, other: usize)
const: unstable · source
fn shr_assign(&mut self, other: usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<usize> for Saturating<u32>
source
impl ShrAssign<usize> for Saturating<u32>
sourcefn shr_assign(&mut self, other: usize)
source
fn shr_assign(&mut self, other: usize)
sourcePerforms the >>= operation. Read more
impl ShrAssign<usize> for Wrapping<i32>
1.8.0 (const: unstable) · source
impl ShrAssign<usize> for Wrapping<i32>
1.8.0 (const: unstable) · sourcefn shr_assign(&mut self, other: usize)
const: unstable · source
fn shr_assign(&mut self, other: usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<usize> for Wrapping<i64>
1.8.0 (const: unstable) · source
impl ShrAssign<usize> for Wrapping<i64>
1.8.0 (const: unstable) · sourcefn shr_assign(&mut self, other: usize)
const: unstable · source
fn shr_assign(&mut self, other: usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<usize> for Wrapping<i128>
1.8.0 (const: unstable) · source
impl ShrAssign<usize> for Wrapping<i128>
1.8.0 (const: unstable) · sourcefn shr_assign(&mut self, other: usize)
const: unstable · source
fn shr_assign(&mut self, other: usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<usize> for Wrapping<isize>
1.8.0 (const: unstable) · source
impl ShrAssign<usize> for Wrapping<isize>
1.8.0 (const: unstable) · sourcefn shr_assign(&mut self, other: usize)
const: unstable · source
fn shr_assign(&mut self, other: usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<usize> for u8
1.8.0 (const: unstable) · source
impl ShrAssign<usize> for u8
1.8.0 (const: unstable) · sourcefn shr_assign(&mut self, other: usize)
const: unstable · source
fn shr_assign(&mut self, other: usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<usize> for u16
1.8.0 (const: unstable) · source
impl ShrAssign<usize> for u16
1.8.0 (const: unstable) · sourcefn shr_assign(&mut self, other: usize)
const: unstable · source
fn shr_assign(&mut self, other: usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<usize> for u32
1.8.0 (const: unstable) · source
impl ShrAssign<usize> for u32
1.8.0 (const: unstable) · sourcefn shr_assign(&mut self, other: usize)
const: unstable · source
fn shr_assign(&mut self, other: usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<usize> for u64
1.8.0 (const: unstable) · source
impl ShrAssign<usize> for u64
1.8.0 (const: unstable) · sourcefn shr_assign(&mut self, other: usize)
const: unstable · source
fn shr_assign(&mut self, other: usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<usize> for u128
1.8.0 (const: unstable) · source
impl ShrAssign<usize> for u128
1.8.0 (const: unstable) · sourcefn shr_assign(&mut self, other: usize)
const: unstable · source
fn shr_assign(&mut self, other: usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<usize> for usize
1.8.0 (const: unstable) · source
impl ShrAssign<usize> for usize
1.8.0 (const: unstable) · sourcefn shr_assign(&mut self, other: usize)
const: unstable · source
fn shr_assign(&mut self, other: usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<usize> for Saturating<u64>
source
impl ShrAssign<usize> for Saturating<u64>
sourcefn shr_assign(&mut self, other: usize)
source
fn shr_assign(&mut self, other: usize)
sourcePerforms the >>= operation. Read more
impl ShrAssign<usize> for i8
1.8.0 (const: unstable) · source
impl ShrAssign<usize> for i8
1.8.0 (const: unstable) · sourcefn shr_assign(&mut self, other: usize)
const: unstable · source
fn shr_assign(&mut self, other: usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<usize> for i16
1.8.0 (const: unstable) · source
impl ShrAssign<usize> for i16
1.8.0 (const: unstable) · sourcefn shr_assign(&mut self, other: usize)
const: unstable · source
fn shr_assign(&mut self, other: usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<usize> for i32
1.8.0 (const: unstable) · source
impl ShrAssign<usize> for i32
1.8.0 (const: unstable) · sourcefn shr_assign(&mut self, other: usize)
const: unstable · source
fn shr_assign(&mut self, other: usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<usize> for i64
1.8.0 (const: unstable) · source
impl ShrAssign<usize> for i64
1.8.0 (const: unstable) · sourcefn shr_assign(&mut self, other: usize)
const: unstable · source
fn shr_assign(&mut self, other: usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<usize> for i128
1.8.0 (const: unstable) · source
impl ShrAssign<usize> for i128
1.8.0 (const: unstable) · sourcefn shr_assign(&mut self, other: usize)
const: unstable · source
fn shr_assign(&mut self, other: usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<usize> for isize
1.8.0 (const: unstable) · source
impl ShrAssign<usize> for isize
1.8.0 (const: unstable) · sourcefn shr_assign(&mut self, other: usize)
const: unstable · source
fn shr_assign(&mut self, other: usize)
const: unstable · sourcePerforms the >>= operation. Read more
impl ShrAssign<usize> for Saturating<u128>
source
impl ShrAssign<usize> for Saturating<u128>
sourcefn shr_assign(&mut self, other: usize)
source
fn shr_assign(&mut self, other: usize)
sourcePerforms the >>= operation. Read more
impl ShrAssign<usize> for Saturating<usize>
source
impl ShrAssign<usize> for Saturating<usize>
sourcefn shr_assign(&mut self, other: usize)
source
fn shr_assign(&mut self, other: usize)
sourcePerforms the >>= operation. Read more
impl ShrAssign<usize> for Saturating<i8>
source
impl ShrAssign<usize> for Saturating<i8>
sourcefn shr_assign(&mut self, other: usize)
source
fn shr_assign(&mut self, other: usize)
sourcePerforms the >>= operation. Read more
impl ShrAssign<usize> for Saturating<i16>
source
impl ShrAssign<usize> for Saturating<i16>
sourcefn shr_assign(&mut self, other: usize)
source
fn shr_assign(&mut self, other: usize)
sourcePerforms the >>= operation. Read more
impl ShrAssign<usize> for Saturating<i32>
source
impl ShrAssign<usize> for Saturating<i32>
sourcefn shr_assign(&mut self, other: usize)
source
fn shr_assign(&mut self, other: usize)
sourcePerforms the >>= operation. Read more
impl ShrAssign<usize> for Saturating<i64>
source
impl ShrAssign<usize> for Saturating<i64>
sourcefn shr_assign(&mut self, other: usize)
source
fn shr_assign(&mut self, other: usize)
sourcePerforms the >>= operation. Read more
impl SimdElement for usize
source
impl SimdElement for usize
sourceimpl<T> SliceIndex<[T]> for usize
1.15.0 (const: unstable) · source
impl<T> SliceIndex<[T]> for usize
1.15.0 (const: unstable) · sourcetype Output = T
type Output = T
The output type returned by methods.
fn get(self, slice: &[T]) -> Option<&T>
const: unstable · source
fn get(self, slice: &[T]) -> Option<&T>
const: unstable · sourceslice_index_methods)Returns a shared reference to the output at this location, if in bounds. Read more
fn get_mut(self, slice: &mut [T]) -> Option<&mut T>
const: unstable · source
fn get_mut(self, slice: &mut [T]) -> Option<&mut T>
const: unstable · sourceslice_index_methods)Returns a mutable reference to the output at this location, if in bounds. Read more
unsafe fn get_unchecked(self, slice: *const [T]) -> *const T
const: unstable · source
unsafe fn get_unchecked(self, slice: *const [T]) -> *const T
const: unstable · sourceslice_index_methods)Returns a shared reference to the output at this location, without
performing any bounds checking.
Calling this method with an out-of-bounds index or a dangling slice pointer
is undefined behavior even if the resulting reference is not used. Read more
unsafe fn get_unchecked_mut(self, slice: *mut [T]) -> *mut T
const: unstable · source
unsafe fn get_unchecked_mut(self, slice: *mut [T]) -> *mut T
const: unstable · sourceslice_index_methods)Returns a mutable reference to the output at this location, without
performing any bounds checking.
Calling this method with an out-of-bounds index or a dangling slice pointer
is undefined behavior even if the resulting reference is not used. Read more
impl Step for usize
source
impl Step for usize
sourceunsafe fn forward_unchecked(start: Self, n: usize) -> Self
source
unsafe fn forward_unchecked(start: Self, n: usize) -> Self
sourceReturns the value that would be obtained by taking the successor
of self count times. Read more
unsafe fn backward_unchecked(start: Self, n: usize) -> Self
source
unsafe fn backward_unchecked(start: Self, n: usize) -> Self
sourceReturns the value that would be obtained by taking the predecessor
of self count times. Read more
fn forward(start: Self, n: usize) -> Self
source
fn forward(start: Self, n: usize) -> Self
sourceReturns the value that would be obtained by taking the successor
of self count times. Read more
fn backward(start: Self, n: usize) -> Self
source
fn backward(start: Self, n: usize) -> Self
sourceReturns the value that would be obtained by taking the predecessor
of self count times. Read more
fn steps_between(start: &Self, end: &Self) -> Option<usize>
source
fn steps_between(start: &Self, end: &Self) -> Option<usize>
sourceReturns the number of successor steps required to get from start to end. Read more
fn forward_checked(start: Self, n: usize) -> Option<Self>
source
fn forward_checked(start: Self, n: usize) -> Option<Self>
sourceReturns the value that would be obtained by taking the successor
of self count times. Read more
impl SubAssign<&'_ usize> for Saturating<usize>
1.22.0 · source
impl SubAssign<&'_ usize> for Saturating<usize>
1.22.0 · sourcefn sub_assign(&mut self, other: &usize)
source
fn sub_assign(&mut self, other: &usize)
sourcePerforms the -= operation. Read more
impl SubAssign<&'_ usize> for Wrapping<usize>
1.22.0 (const: unstable) · source
impl SubAssign<&'_ usize> for Wrapping<usize>
1.22.0 (const: unstable) · sourcefn sub_assign(&mut self, other: &usize)
const: unstable · source
fn sub_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the -= operation. Read more
impl SubAssign<&'_ usize> for usize
1.22.0 (const: unstable) · source
impl SubAssign<&'_ usize> for usize
1.22.0 (const: unstable) · sourcefn sub_assign(&mut self, other: &usize)
const: unstable · source
fn sub_assign(&mut self, other: &usize)
const: unstable · sourcePerforms the -= operation. Read more
impl SubAssign<usize> for Saturating<usize>
source
impl SubAssign<usize> for Saturating<usize>
sourcefn sub_assign(&mut self, other: usize)
source
fn sub_assign(&mut self, other: usize)
sourcePerforms the -= operation. Read more
impl SubAssign<usize> for Wrapping<usize>
1.60.0 (const: unstable) · source
impl SubAssign<usize> for Wrapping<usize>
1.60.0 (const: unstable) · sourcefn sub_assign(&mut self, other: usize)
const: unstable · source
fn sub_assign(&mut self, other: usize)
const: unstable · sourcePerforms the -= operation. Read more
impl SubAssign<usize> for usize
1.8.0 (const: unstable) · source
impl SubAssign<usize> for usize
1.8.0 (const: unstable) · sourcefn sub_assign(&mut self, other: usize)
const: unstable · source
fn sub_assign(&mut self, other: usize)
const: unstable · sourcePerforms the -= operation. Read more
impl TryFrom<i128> for usize
1.34.0 (const: unstable) · source
impl TryFrom<i128> for usize
1.34.0 (const: unstable) · sourcefn try_from(u: i128) -> Result<Self, Self::Error>
const: unstable · source
fn try_from(u: i128) -> Result<Self, Self::Error>
const: unstable · sourceTry to create the target number type from a source number type. This returns an error if the source value is outside of the range of the target type.
type Error = TryFromIntError
type Error = TryFromIntError
The type returned in the event of a conversion error.
impl TryFrom<i16> for usize
1.34.0 (const: unstable) · source
impl TryFrom<i16> for usize
1.34.0 (const: unstable) · sourcefn try_from(u: i16) -> Result<Self, Self::Error>
const: unstable · source
fn try_from(u: i16) -> Result<Self, Self::Error>
const: unstable · sourceTry to create the target number type from a source number type. This returns an error if the source value is outside of the range of the target type.
type Error = TryFromIntError
type Error = TryFromIntError
The type returned in the event of a conversion error.
impl TryFrom<i32> for usize
1.34.0 (const: unstable) · source
impl TryFrom<i32> for usize
1.34.0 (const: unstable) · sourcefn try_from(u: i32) -> Result<Self, Self::Error>
const: unstable · source
fn try_from(u: i32) -> Result<Self, Self::Error>
const: unstable · sourceTry to create the target number type from a source number type. This returns an error if the source value is outside of the range of the target type.
type Error = TryFromIntError
type Error = TryFromIntError
The type returned in the event of a conversion error.
impl TryFrom<i64> for usize
1.34.0 (const: unstable) · source
impl TryFrom<i64> for usize
1.34.0 (const: unstable) · sourcefn try_from(u: i64) -> Result<Self, Self::Error>
const: unstable · source
fn try_from(u: i64) -> Result<Self, Self::Error>
const: unstable · sourceTry to create the target number type from a source number type. This returns an error if the source value is outside of the range of the target type.
type Error = TryFromIntError
type Error = TryFromIntError
The type returned in the event of a conversion error.
impl TryFrom<i8> for usize
1.34.0 (const: unstable) · source
impl TryFrom<i8> for usize
1.34.0 (const: unstable) · sourcefn try_from(u: i8) -> Result<Self, Self::Error>
const: unstable · source
fn try_from(u: i8) -> Result<Self, Self::Error>
const: unstable · sourceTry to create the target number type from a source number type. This returns an error if the source value is outside of the range of the target type.
type Error = TryFromIntError
type Error = TryFromIntError
The type returned in the event of a conversion error.
impl TryFrom<isize> for usize
1.34.0 (const: unstable) · source
impl TryFrom<isize> for usize
1.34.0 (const: unstable) · sourcefn try_from(u: isize) -> Result<Self, Self::Error>
const: unstable · source
fn try_from(u: isize) -> Result<Self, Self::Error>
const: unstable · sourceTry to create the target number type from a source number type. This returns an error if the source value is outside of the range of the target type.
type Error = TryFromIntError
type Error = TryFromIntError
The type returned in the event of a conversion error.
impl TryFrom<u128> for usize
1.34.0 (const: unstable) · source
impl TryFrom<u128> for usize
1.34.0 (const: unstable) · sourcefn try_from(u: u128) -> Result<Self, Self::Error>
const: unstable · source
fn try_from(u: u128) -> Result<Self, Self::Error>
const: unstable · sourceTry to create the target number type from a source number type. This returns an error if the source value is outside of the range of the target type.
type Error = TryFromIntError
type Error = TryFromIntError
The type returned in the event of a conversion error.
impl TryFrom<u32> for usize
1.34.0 (const: unstable) · source
impl TryFrom<u32> for usize
1.34.0 (const: unstable) · sourcefn try_from(value: u32) -> Result<Self, Self::Error>
const: unstable · source
fn try_from(value: u32) -> Result<Self, Self::Error>
const: unstable · sourceTry to create the target number type from a source number type. This returns an error if the source value is outside of the range of the target type.
type Error = TryFromIntError
type Error = TryFromIntError
The type returned in the event of a conversion error.
impl TryFrom<u64> for usize
1.34.0 (const: unstable) · source
impl TryFrom<u64> for usize
1.34.0 (const: unstable) · sourcefn try_from(value: u64) -> Result<Self, Self::Error>
const: unstable · source
fn try_from(value: u64) -> Result<Self, Self::Error>
const: unstable · sourceTry to create the target number type from a source number type. This returns an error if the source value is outside of the range of the target type.
type Error = TryFromIntError
type Error = TryFromIntError
The type returned in the event of a conversion error.
impl TryFrom<usize> for isize
1.34.0 (const: unstable) · source
impl TryFrom<usize> for isize
1.34.0 (const: unstable) · sourcefn try_from(u: usize) -> Result<Self, Self::Error>
const: unstable · source
fn try_from(u: usize) -> Result<Self, Self::Error>
const: unstable · sourceTry to create the target number type from a source number type. This returns an error if the source value is outside of the range of the target type.
type Error = TryFromIntError
type Error = TryFromIntError
The type returned in the event of a conversion error.
impl TryFrom<usize> for u8
1.34.0 (const: unstable) · source
impl TryFrom<usize> for u8
1.34.0 (const: unstable) · sourcefn try_from(u: usize) -> Result<Self, Self::Error>
const: unstable · source
fn try_from(u: usize) -> Result<Self, Self::Error>
const: unstable · sourceTry to create the target number type from a source number type. This returns an error if the source value is outside of the range of the target type.
type Error = TryFromIntError
type Error = TryFromIntError
The type returned in the event of a conversion error.
impl TryFrom<usize> for i128
1.34.0 (const: unstable) · source
impl TryFrom<usize> for i128
1.34.0 (const: unstable) · sourcefn try_from(value: usize) -> Result<Self, Self::Error>
const: unstable · source
fn try_from(value: usize) -> Result<Self, Self::Error>
const: unstable · sourceTry to create the target number type from a source number type. This returns an error if the source value is outside of the range of the target type.
type Error = TryFromIntError
type Error = TryFromIntError
The type returned in the event of a conversion error.
impl TryFrom<usize> for NonZeroUsize
1.46.0 · source
impl TryFrom<usize> for NonZeroUsize
1.46.0 · sourceimpl TryFrom<usize> for u16
1.34.0 (const: unstable) · source
impl TryFrom<usize> for u16
1.34.0 (const: unstable) · sourcefn try_from(u: usize) -> Result<Self, Self::Error>
const: unstable · source
fn try_from(u: usize) -> Result<Self, Self::Error>
const: unstable · sourceTry to create the target number type from a source number type. This returns an error if the source value is outside of the range of the target type.
type Error = TryFromIntError
type Error = TryFromIntError
The type returned in the event of a conversion error.
impl TryFrom<usize> for u32
1.34.0 (const: unstable) · source
impl TryFrom<usize> for u32
1.34.0 (const: unstable) · sourcefn try_from(u: usize) -> Result<Self, Self::Error>
const: unstable · source
fn try_from(u: usize) -> Result<Self, Self::Error>
const: unstable · sourceTry to create the target number type from a source number type. This returns an error if the source value is outside of the range of the target type.
type Error = TryFromIntError
type Error = TryFromIntError
The type returned in the event of a conversion error.
impl TryFrom<usize> for u64
1.34.0 (const: unstable) · source
impl TryFrom<usize> for u64
1.34.0 (const: unstable) · sourcefn try_from(value: usize) -> Result<Self, Self::Error>
const: unstable · source
fn try_from(value: usize) -> Result<Self, Self::Error>
const: unstable · sourceTry to create the target number type from a source number type. This returns an error if the source value is outside of the range of the target type.
type Error = TryFromIntError
type Error = TryFromIntError
The type returned in the event of a conversion error.
impl TryFrom<usize> for u128
1.34.0 (const: unstable) · source
impl TryFrom<usize> for u128
1.34.0 (const: unstable) · sourcefn try_from(value: usize) -> Result<Self, Self::Error>
const: unstable · source
fn try_from(value: usize) -> Result<Self, Self::Error>
const: unstable · sourceTry to create the target number type from a source number type. This returns an error if the source value is outside of the range of the target type.
type Error = TryFromIntError
type Error = TryFromIntError
The type returned in the event of a conversion error.
impl TryFrom<usize> for i8
1.34.0 (const: unstable) · source
impl TryFrom<usize> for i8
1.34.0 (const: unstable) · sourcefn try_from(u: usize) -> Result<Self, Self::Error>
const: unstable · source
fn try_from(u: usize) -> Result<Self, Self::Error>
const: unstable · sourceTry to create the target number type from a source number type. This returns an error if the source value is outside of the range of the target type.
type Error = TryFromIntError
type Error = TryFromIntError
The type returned in the event of a conversion error.
impl TryFrom<usize> for i16
1.34.0 (const: unstable) · source
impl TryFrom<usize> for i16
1.34.0 (const: unstable) · sourcefn try_from(u: usize) -> Result<Self, Self::Error>
const: unstable · source
fn try_from(u: usize) -> Result<Self, Self::Error>
const: unstable · sourceTry to create the target number type from a source number type. This returns an error if the source value is outside of the range of the target type.
type Error = TryFromIntError
type Error = TryFromIntError
The type returned in the event of a conversion error.
impl TryFrom<usize> for i32
1.34.0 (const: unstable) · source
impl TryFrom<usize> for i32
1.34.0 (const: unstable) · sourcefn try_from(u: usize) -> Result<Self, Self::Error>
const: unstable · source
fn try_from(u: usize) -> Result<Self, Self::Error>
const: unstable · sourceTry to create the target number type from a source number type. This returns an error if the source value is outside of the range of the target type.
type Error = TryFromIntError
type Error = TryFromIntError
The type returned in the event of a conversion error.
impl TryFrom<usize> for i64
1.34.0 (const: unstable) · source
impl TryFrom<usize> for i64
1.34.0 (const: unstable) · sourcefn try_from(u: usize) -> Result<Self, Self::Error>
const: unstable · source
fn try_from(u: usize) -> Result<Self, Self::Error>
const: unstable · sourceTry to create the target number type from a source number type. This returns an error if the source value is outside of the range of the target type.
type Error = TryFromIntError
type Error = TryFromIntError
The type returned in the event of a conversion error.
impl Copy for usize
sourceimpl Eq for usize
sourceimpl FloatToInt<usize> for f32
sourceimpl FloatToInt<usize> for f64
sourceimpl TrustedStep for usize
sourceAuto Trait Implementations
impl RefUnwindSafe for usize
impl Send for usize
impl Sync for usize
impl Unpin for usize
impl UnwindSafe for usize
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
source
impl<T> BorrowMut<T> for T where
T: ?Sized,
sourcefn borrow_mut(&mut self) -> &mut T
const: unstable · source
fn borrow_mut(&mut self) -> &mut T
const: unstable · sourceMutably borrows from an owned value. Read more