Struct Wrapping

1.6.0 ยท Source
#[repr(transparent)]
pub struct Wrapping<T>(pub T);
Expand description

Provides intentionally-wrapped arithmetic on T.

Operations like + on u32 values are intended to never overflow, and in some debug configurations overflow is detected and results in a panic. While most arithmetic falls into this category, some code explicitly expects and relies upon modular arithmetic (e.g., hashing).

Wrapping arithmetic can be achieved either through methods like wrapping_add, or through the Wrapping<T> type, which says that all standard arithmetic operations on the underlying value are intended to have wrapping semantics.

The underlying value can be retrieved through the .0 index of the Wrapping tuple.

ยงExamples

use std::num::Wrapping;

let zero = Wrapping(0u32);
let one = Wrapping(1u32);

assert_eq!(u32::MAX, (zero - one).0);

ยงLayout

Wrapping<T> is guaranteed to have the same layout and ABI as T.

Tuple Fieldsยง

ยง0: T

Implementationsยง

Sourceยง

impl Wrapping<usize>

Source

pub const MIN: Wrapping<usize>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(<Wrapping<usize>>::MIN, Wrapping(usize::MIN));
Source

pub const MAX: Wrapping<usize>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(<Wrapping<usize>>::MAX, Wrapping(usize::MAX));
Source

pub const BITS: u32 = 64u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Returns the size of this integer type in bits.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(<Wrapping<usize>>::BITS, usize::BITS);
Source

pub const fn count_ones(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0b01001100usize);

assert_eq!(n.count_ones(), 3);
Source

pub const fn count_zeros(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(!0usize).count_zeros(), 0);
Source

pub const fn trailing_zeros(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0b0101000usize);

assert_eq!(n.trailing_zeros(), 3);
Source

pub const fn rotate_left(self, n: u32) -> Wrapping<usize>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

Please note this isnโ€™t the same operation as the << shifting operator!

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF);
let m: Wrapping<i64> = Wrapping(-0x76543210FEDCBA99);

assert_eq!(n.rotate_left(32), m);
Source

pub const fn rotate_right(self, n: u32) -> Wrapping<usize>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

Please note this isnโ€™t the same operation as the >> shifting operator!

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF);
let m: Wrapping<i64> = Wrapping(-0xFEDCBA987654322);

assert_eq!(n.rotate_right(4), m);
Source

pub const fn swap_bytes(self) -> Wrapping<usize>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Reverses the byte order of the integer.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n: Wrapping<i16> = Wrapping(0b0000000_01010101);
assert_eq!(n, Wrapping(85));

let m = n.swap_bytes();

assert_eq!(m, Wrapping(0b01010101_00000000));
assert_eq!(m, Wrapping(21760));
1.37.0 (const: 1.37.0) ยท Source

pub const fn reverse_bits(self) -> Wrapping<usize>

Reverses the bit pattern of the integer.

ยงExamples

Please note that this example is shared between integer types. Which explains why i16 is used here.

Basic usage:

use std::num::Wrapping;

let n = Wrapping(0b0000000_01010101i16);
assert_eq!(n, Wrapping(85));

let m = n.reverse_bits();

assert_eq!(m.0 as u16, 0b10101010_00000000);
assert_eq!(m, Wrapping(-22016));
Source

pub const fn from_be(x: Wrapping<usize>) -> Wrapping<usize>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts an integer from big endian to the targetโ€™s endianness.

On big endian this is a no-op. On little endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Ausize);

if cfg!(target_endian = "big") {
    assert_eq!(<Wrapping<usize>>::from_be(n), n)
} else {
    assert_eq!(<Wrapping<usize>>::from_be(n), n.swap_bytes())
}
Source

pub const fn from_le(x: Wrapping<usize>) -> Wrapping<usize>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts an integer from little endian to the targetโ€™s endianness.

On little endian this is a no-op. On big endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Ausize);

if cfg!(target_endian = "little") {
    assert_eq!(<Wrapping<usize>>::from_le(n), n)
} else {
    assert_eq!(<Wrapping<usize>>::from_le(n), n.swap_bytes())
}
Source

pub const fn to_be(self) -> Wrapping<usize>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts self to big endian from the targetโ€™s endianness.

On big endian this is a no-op. On little endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Ausize);

if cfg!(target_endian = "big") {
    assert_eq!(n.to_be(), n)
} else {
    assert_eq!(n.to_be(), n.swap_bytes())
}
Source

pub const fn to_le(self) -> Wrapping<usize>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts self to little endian from the targetโ€™s endianness.

On little endian this is a no-op. On big endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Ausize);

if cfg!(target_endian = "little") {
    assert_eq!(n.to_le(), n)
} else {
    assert_eq!(n.to_le(), n.swap_bytes())
}
Source

pub fn pow(self, exp: u32) -> Wrapping<usize>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(3usize).pow(4), Wrapping(81));

Results that are too large are wrapped:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(3i8).pow(5), Wrapping(-13));
assert_eq!(Wrapping(3i8).pow(6), Wrapping(-39));
Sourceยง

impl Wrapping<u8>

Source

pub const MIN: Wrapping<u8>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(<Wrapping<u8>>::MIN, Wrapping(u8::MIN));
Source

pub const MAX: Wrapping<u8>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(<Wrapping<u8>>::MAX, Wrapping(u8::MAX));
Source

pub const BITS: u32 = 8u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Returns the size of this integer type in bits.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(<Wrapping<u8>>::BITS, u8::BITS);
Source

pub const fn count_ones(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0b01001100u8);

assert_eq!(n.count_ones(), 3);
Source

pub const fn count_zeros(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(!0u8).count_zeros(), 0);
Source

pub const fn trailing_zeros(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0b0101000u8);

assert_eq!(n.trailing_zeros(), 3);
Source

pub const fn rotate_left(self, n: u32) -> Wrapping<u8>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

Please note this isnโ€™t the same operation as the << shifting operator!

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF);
let m: Wrapping<i64> = Wrapping(-0x76543210FEDCBA99);

assert_eq!(n.rotate_left(32), m);
Source

pub const fn rotate_right(self, n: u32) -> Wrapping<u8>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

Please note this isnโ€™t the same operation as the >> shifting operator!

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF);
let m: Wrapping<i64> = Wrapping(-0xFEDCBA987654322);

assert_eq!(n.rotate_right(4), m);
Source

pub const fn swap_bytes(self) -> Wrapping<u8>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Reverses the byte order of the integer.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n: Wrapping<i16> = Wrapping(0b0000000_01010101);
assert_eq!(n, Wrapping(85));

let m = n.swap_bytes();

assert_eq!(m, Wrapping(0b01010101_00000000));
assert_eq!(m, Wrapping(21760));
1.37.0 (const: 1.37.0) ยท Source

pub const fn reverse_bits(self) -> Wrapping<u8>

Reverses the bit pattern of the integer.

ยงExamples

Please note that this example is shared between integer types. Which explains why i16 is used here.

Basic usage:

use std::num::Wrapping;

let n = Wrapping(0b0000000_01010101i16);
assert_eq!(n, Wrapping(85));

let m = n.reverse_bits();

assert_eq!(m.0 as u16, 0b10101010_00000000);
assert_eq!(m, Wrapping(-22016));
Source

pub const fn from_be(x: Wrapping<u8>) -> Wrapping<u8>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts an integer from big endian to the targetโ€™s endianness.

On big endian this is a no-op. On little endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Au8);

if cfg!(target_endian = "big") {
    assert_eq!(<Wrapping<u8>>::from_be(n), n)
} else {
    assert_eq!(<Wrapping<u8>>::from_be(n), n.swap_bytes())
}
Source

pub const fn from_le(x: Wrapping<u8>) -> Wrapping<u8>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts an integer from little endian to the targetโ€™s endianness.

On little endian this is a no-op. On big endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Au8);

if cfg!(target_endian = "little") {
    assert_eq!(<Wrapping<u8>>::from_le(n), n)
} else {
    assert_eq!(<Wrapping<u8>>::from_le(n), n.swap_bytes())
}
Source

pub const fn to_be(self) -> Wrapping<u8>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts self to big endian from the targetโ€™s endianness.

On big endian this is a no-op. On little endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Au8);

if cfg!(target_endian = "big") {
    assert_eq!(n.to_be(), n)
} else {
    assert_eq!(n.to_be(), n.swap_bytes())
}
Source

pub const fn to_le(self) -> Wrapping<u8>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts self to little endian from the targetโ€™s endianness.

On little endian this is a no-op. On big endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Au8);

if cfg!(target_endian = "little") {
    assert_eq!(n.to_le(), n)
} else {
    assert_eq!(n.to_le(), n.swap_bytes())
}
Source

pub fn pow(self, exp: u32) -> Wrapping<u8>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(3u8).pow(4), Wrapping(81));

Results that are too large are wrapped:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(3i8).pow(5), Wrapping(-13));
assert_eq!(Wrapping(3i8).pow(6), Wrapping(-39));
Sourceยง

impl Wrapping<u16>

Source

pub const MIN: Wrapping<u16>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(<Wrapping<u16>>::MIN, Wrapping(u16::MIN));
Source

pub const MAX: Wrapping<u16>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(<Wrapping<u16>>::MAX, Wrapping(u16::MAX));
Source

pub const BITS: u32 = 16u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Returns the size of this integer type in bits.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(<Wrapping<u16>>::BITS, u16::BITS);
Source

pub const fn count_ones(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0b01001100u16);

assert_eq!(n.count_ones(), 3);
Source

pub const fn count_zeros(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(!0u16).count_zeros(), 0);
Source

pub const fn trailing_zeros(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0b0101000u16);

assert_eq!(n.trailing_zeros(), 3);
Source

pub const fn rotate_left(self, n: u32) -> Wrapping<u16>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

Please note this isnโ€™t the same operation as the << shifting operator!

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF);
let m: Wrapping<i64> = Wrapping(-0x76543210FEDCBA99);

assert_eq!(n.rotate_left(32), m);
Source

pub const fn rotate_right(self, n: u32) -> Wrapping<u16>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

Please note this isnโ€™t the same operation as the >> shifting operator!

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF);
let m: Wrapping<i64> = Wrapping(-0xFEDCBA987654322);

assert_eq!(n.rotate_right(4), m);
Source

pub const fn swap_bytes(self) -> Wrapping<u16>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Reverses the byte order of the integer.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n: Wrapping<i16> = Wrapping(0b0000000_01010101);
assert_eq!(n, Wrapping(85));

let m = n.swap_bytes();

assert_eq!(m, Wrapping(0b01010101_00000000));
assert_eq!(m, Wrapping(21760));
1.37.0 (const: 1.37.0) ยท Source

pub const fn reverse_bits(self) -> Wrapping<u16>

Reverses the bit pattern of the integer.

ยงExamples

Please note that this example is shared between integer types. Which explains why i16 is used here.

Basic usage:

use std::num::Wrapping;

let n = Wrapping(0b0000000_01010101i16);
assert_eq!(n, Wrapping(85));

let m = n.reverse_bits();

assert_eq!(m.0 as u16, 0b10101010_00000000);
assert_eq!(m, Wrapping(-22016));
Source

pub const fn from_be(x: Wrapping<u16>) -> Wrapping<u16>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts an integer from big endian to the targetโ€™s endianness.

On big endian this is a no-op. On little endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Au16);

if cfg!(target_endian = "big") {
    assert_eq!(<Wrapping<u16>>::from_be(n), n)
} else {
    assert_eq!(<Wrapping<u16>>::from_be(n), n.swap_bytes())
}
Source

pub const fn from_le(x: Wrapping<u16>) -> Wrapping<u16>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts an integer from little endian to the targetโ€™s endianness.

On little endian this is a no-op. On big endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Au16);

if cfg!(target_endian = "little") {
    assert_eq!(<Wrapping<u16>>::from_le(n), n)
} else {
    assert_eq!(<Wrapping<u16>>::from_le(n), n.swap_bytes())
}
Source

pub const fn to_be(self) -> Wrapping<u16>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts self to big endian from the targetโ€™s endianness.

On big endian this is a no-op. On little endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Au16);

if cfg!(target_endian = "big") {
    assert_eq!(n.to_be(), n)
} else {
    assert_eq!(n.to_be(), n.swap_bytes())
}
Source

pub const fn to_le(self) -> Wrapping<u16>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts self to little endian from the targetโ€™s endianness.

On little endian this is a no-op. On big endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Au16);

if cfg!(target_endian = "little") {
    assert_eq!(n.to_le(), n)
} else {
    assert_eq!(n.to_le(), n.swap_bytes())
}
Source

pub fn pow(self, exp: u32) -> Wrapping<u16>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(3u16).pow(4), Wrapping(81));

Results that are too large are wrapped:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(3i8).pow(5), Wrapping(-13));
assert_eq!(Wrapping(3i8).pow(6), Wrapping(-39));
Sourceยง

impl Wrapping<u32>

Source

pub const MIN: Wrapping<u32>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(<Wrapping<u32>>::MIN, Wrapping(u32::MIN));
Source

pub const MAX: Wrapping<u32>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(<Wrapping<u32>>::MAX, Wrapping(u32::MAX));
Source

pub const BITS: u32 = 32u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Returns the size of this integer type in bits.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(<Wrapping<u32>>::BITS, u32::BITS);
Source

pub const fn count_ones(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0b01001100u32);

assert_eq!(n.count_ones(), 3);
Source

pub const fn count_zeros(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(!0u32).count_zeros(), 0);
Source

pub const fn trailing_zeros(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0b0101000u32);

assert_eq!(n.trailing_zeros(), 3);
Source

pub const fn rotate_left(self, n: u32) -> Wrapping<u32>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

Please note this isnโ€™t the same operation as the << shifting operator!

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF);
let m: Wrapping<i64> = Wrapping(-0x76543210FEDCBA99);

assert_eq!(n.rotate_left(32), m);
Source

pub const fn rotate_right(self, n: u32) -> Wrapping<u32>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

Please note this isnโ€™t the same operation as the >> shifting operator!

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF);
let m: Wrapping<i64> = Wrapping(-0xFEDCBA987654322);

assert_eq!(n.rotate_right(4), m);
Source

pub const fn swap_bytes(self) -> Wrapping<u32>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Reverses the byte order of the integer.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n: Wrapping<i16> = Wrapping(0b0000000_01010101);
assert_eq!(n, Wrapping(85));

let m = n.swap_bytes();

assert_eq!(m, Wrapping(0b01010101_00000000));
assert_eq!(m, Wrapping(21760));
1.37.0 (const: 1.37.0) ยท Source

pub const fn reverse_bits(self) -> Wrapping<u32>

Reverses the bit pattern of the integer.

ยงExamples

Please note that this example is shared between integer types. Which explains why i16 is used here.

Basic usage:

use std::num::Wrapping;

let n = Wrapping(0b0000000_01010101i16);
assert_eq!(n, Wrapping(85));

let m = n.reverse_bits();

assert_eq!(m.0 as u16, 0b10101010_00000000);
assert_eq!(m, Wrapping(-22016));
Source

pub const fn from_be(x: Wrapping<u32>) -> Wrapping<u32>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts an integer from big endian to the targetโ€™s endianness.

On big endian this is a no-op. On little endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Au32);

if cfg!(target_endian = "big") {
    assert_eq!(<Wrapping<u32>>::from_be(n), n)
} else {
    assert_eq!(<Wrapping<u32>>::from_be(n), n.swap_bytes())
}
Source

pub const fn from_le(x: Wrapping<u32>) -> Wrapping<u32>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts an integer from little endian to the targetโ€™s endianness.

On little endian this is a no-op. On big endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Au32);

if cfg!(target_endian = "little") {
    assert_eq!(<Wrapping<u32>>::from_le(n), n)
} else {
    assert_eq!(<Wrapping<u32>>::from_le(n), n.swap_bytes())
}
Source

pub const fn to_be(self) -> Wrapping<u32>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts self to big endian from the targetโ€™s endianness.

On big endian this is a no-op. On little endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Au32);

if cfg!(target_endian = "big") {
    assert_eq!(n.to_be(), n)
} else {
    assert_eq!(n.to_be(), n.swap_bytes())
}
Source

pub const fn to_le(self) -> Wrapping<u32>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts self to little endian from the targetโ€™s endianness.

On little endian this is a no-op. On big endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Au32);

if cfg!(target_endian = "little") {
    assert_eq!(n.to_le(), n)
} else {
    assert_eq!(n.to_le(), n.swap_bytes())
}
Source

pub fn pow(self, exp: u32) -> Wrapping<u32>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(3u32).pow(4), Wrapping(81));

Results that are too large are wrapped:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(3i8).pow(5), Wrapping(-13));
assert_eq!(Wrapping(3i8).pow(6), Wrapping(-39));
Sourceยง

impl Wrapping<u64>

Source

pub const MIN: Wrapping<u64>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(<Wrapping<u64>>::MIN, Wrapping(u64::MIN));
Source

pub const MAX: Wrapping<u64>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(<Wrapping<u64>>::MAX, Wrapping(u64::MAX));
Source

pub const BITS: u32 = 64u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Returns the size of this integer type in bits.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(<Wrapping<u64>>::BITS, u64::BITS);
Source

pub const fn count_ones(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0b01001100u64);

assert_eq!(n.count_ones(), 3);
Source

pub const fn count_zeros(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(!0u64).count_zeros(), 0);
Source

pub const fn trailing_zeros(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0b0101000u64);

assert_eq!(n.trailing_zeros(), 3);
Source

pub const fn rotate_left(self, n: u32) -> Wrapping<u64>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

Please note this isnโ€™t the same operation as the << shifting operator!

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF);
let m: Wrapping<i64> = Wrapping(-0x76543210FEDCBA99);

assert_eq!(n.rotate_left(32), m);
Source

pub const fn rotate_right(self, n: u32) -> Wrapping<u64>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

Please note this isnโ€™t the same operation as the >> shifting operator!

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF);
let m: Wrapping<i64> = Wrapping(-0xFEDCBA987654322);

assert_eq!(n.rotate_right(4), m);
Source

pub const fn swap_bytes(self) -> Wrapping<u64>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Reverses the byte order of the integer.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n: Wrapping<i16> = Wrapping(0b0000000_01010101);
assert_eq!(n, Wrapping(85));

let m = n.swap_bytes();

assert_eq!(m, Wrapping(0b01010101_00000000));
assert_eq!(m, Wrapping(21760));
1.37.0 (const: 1.37.0) ยท Source

pub const fn reverse_bits(self) -> Wrapping<u64>

Reverses the bit pattern of the integer.

ยงExamples

Please note that this example is shared between integer types. Which explains why i16 is used here.

Basic usage:

use std::num::Wrapping;

let n = Wrapping(0b0000000_01010101i16);
assert_eq!(n, Wrapping(85));

let m = n.reverse_bits();

assert_eq!(m.0 as u16, 0b10101010_00000000);
assert_eq!(m, Wrapping(-22016));
Source

pub const fn from_be(x: Wrapping<u64>) -> Wrapping<u64>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts an integer from big endian to the targetโ€™s endianness.

On big endian this is a no-op. On little endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Au64);

if cfg!(target_endian = "big") {
    assert_eq!(<Wrapping<u64>>::from_be(n), n)
} else {
    assert_eq!(<Wrapping<u64>>::from_be(n), n.swap_bytes())
}
Source

pub const fn from_le(x: Wrapping<u64>) -> Wrapping<u64>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts an integer from little endian to the targetโ€™s endianness.

On little endian this is a no-op. On big endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Au64);

if cfg!(target_endian = "little") {
    assert_eq!(<Wrapping<u64>>::from_le(n), n)
} else {
    assert_eq!(<Wrapping<u64>>::from_le(n), n.swap_bytes())
}
Source

pub const fn to_be(self) -> Wrapping<u64>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts self to big endian from the targetโ€™s endianness.

On big endian this is a no-op. On little endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Au64);

if cfg!(target_endian = "big") {
    assert_eq!(n.to_be(), n)
} else {
    assert_eq!(n.to_be(), n.swap_bytes())
}
Source

pub const fn to_le(self) -> Wrapping<u64>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts self to little endian from the targetโ€™s endianness.

On little endian this is a no-op. On big endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Au64);

if cfg!(target_endian = "little") {
    assert_eq!(n.to_le(), n)
} else {
    assert_eq!(n.to_le(), n.swap_bytes())
}
Source

pub fn pow(self, exp: u32) -> Wrapping<u64>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(3u64).pow(4), Wrapping(81));

Results that are too large are wrapped:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(3i8).pow(5), Wrapping(-13));
assert_eq!(Wrapping(3i8).pow(6), Wrapping(-39));
Sourceยง

impl Wrapping<u128>

Source

pub const MIN: Wrapping<u128>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(<Wrapping<u128>>::MIN, Wrapping(u128::MIN));
Source

pub const MAX: Wrapping<u128>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(<Wrapping<u128>>::MAX, Wrapping(u128::MAX));
Source

pub const BITS: u32 = 128u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Returns the size of this integer type in bits.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(<Wrapping<u128>>::BITS, u128::BITS);
Source

pub const fn count_ones(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0b01001100u128);

assert_eq!(n.count_ones(), 3);
Source

pub const fn count_zeros(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(!0u128).count_zeros(), 0);
Source

pub const fn trailing_zeros(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0b0101000u128);

assert_eq!(n.trailing_zeros(), 3);
Source

pub const fn rotate_left(self, n: u32) -> Wrapping<u128>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

Please note this isnโ€™t the same operation as the << shifting operator!

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF);
let m: Wrapping<i64> = Wrapping(-0x76543210FEDCBA99);

assert_eq!(n.rotate_left(32), m);
Source

pub const fn rotate_right(self, n: u32) -> Wrapping<u128>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

Please note this isnโ€™t the same operation as the >> shifting operator!

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF);
let m: Wrapping<i64> = Wrapping(-0xFEDCBA987654322);

assert_eq!(n.rotate_right(4), m);
Source

pub const fn swap_bytes(self) -> Wrapping<u128>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Reverses the byte order of the integer.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n: Wrapping<i16> = Wrapping(0b0000000_01010101);
assert_eq!(n, Wrapping(85));

let m = n.swap_bytes();

assert_eq!(m, Wrapping(0b01010101_00000000));
assert_eq!(m, Wrapping(21760));
1.37.0 (const: 1.37.0) ยท Source

pub const fn reverse_bits(self) -> Wrapping<u128>

Reverses the bit pattern of the integer.

ยงExamples

Please note that this example is shared between integer types. Which explains why i16 is used here.

Basic usage:

use std::num::Wrapping;

let n = Wrapping(0b0000000_01010101i16);
assert_eq!(n, Wrapping(85));

let m = n.reverse_bits();

assert_eq!(m.0 as u16, 0b10101010_00000000);
assert_eq!(m, Wrapping(-22016));
Source

pub const fn from_be(x: Wrapping<u128>) -> Wrapping<u128>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts an integer from big endian to the targetโ€™s endianness.

On big endian this is a no-op. On little endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Au128);

if cfg!(target_endian = "big") {
    assert_eq!(<Wrapping<u128>>::from_be(n), n)
} else {
    assert_eq!(<Wrapping<u128>>::from_be(n), n.swap_bytes())
}
Source

pub const fn from_le(x: Wrapping<u128>) -> Wrapping<u128>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts an integer from little endian to the targetโ€™s endianness.

On little endian this is a no-op. On big endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Au128);

if cfg!(target_endian = "little") {
    assert_eq!(<Wrapping<u128>>::from_le(n), n)
} else {
    assert_eq!(<Wrapping<u128>>::from_le(n), n.swap_bytes())
}
Source

pub const fn to_be(self) -> Wrapping<u128>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts self to big endian from the targetโ€™s endianness.

On big endian this is a no-op. On little endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Au128);

if cfg!(target_endian = "big") {
    assert_eq!(n.to_be(), n)
} else {
    assert_eq!(n.to_be(), n.swap_bytes())
}
Source

pub const fn to_le(self) -> Wrapping<u128>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts self to little endian from the targetโ€™s endianness.

On little endian this is a no-op. On big endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Au128);

if cfg!(target_endian = "little") {
    assert_eq!(n.to_le(), n)
} else {
    assert_eq!(n.to_le(), n.swap_bytes())
}
Source

pub fn pow(self, exp: u32) -> Wrapping<u128>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(3u128).pow(4), Wrapping(81));

Results that are too large are wrapped:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(3i8).pow(5), Wrapping(-13));
assert_eq!(Wrapping(3i8).pow(6), Wrapping(-39));
Sourceยง

impl Wrapping<isize>

Source

pub const MIN: Wrapping<isize>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(<Wrapping<isize>>::MIN, Wrapping(isize::MIN));
Source

pub const MAX: Wrapping<isize>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(<Wrapping<isize>>::MAX, Wrapping(isize::MAX));
Source

pub const BITS: u32 = 64u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Returns the size of this integer type in bits.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(<Wrapping<isize>>::BITS, isize::BITS);
Source

pub const fn count_ones(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0b01001100isize);

assert_eq!(n.count_ones(), 3);
Source

pub const fn count_zeros(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(!0isize).count_zeros(), 0);
Source

pub const fn trailing_zeros(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0b0101000isize);

assert_eq!(n.trailing_zeros(), 3);
Source

pub const fn rotate_left(self, n: u32) -> Wrapping<isize>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

Please note this isnโ€™t the same operation as the << shifting operator!

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF);
let m: Wrapping<i64> = Wrapping(-0x76543210FEDCBA99);

assert_eq!(n.rotate_left(32), m);
Source

pub const fn rotate_right(self, n: u32) -> Wrapping<isize>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

Please note this isnโ€™t the same operation as the >> shifting operator!

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF);
let m: Wrapping<i64> = Wrapping(-0xFEDCBA987654322);

assert_eq!(n.rotate_right(4), m);
Source

pub const fn swap_bytes(self) -> Wrapping<isize>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Reverses the byte order of the integer.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n: Wrapping<i16> = Wrapping(0b0000000_01010101);
assert_eq!(n, Wrapping(85));

let m = n.swap_bytes();

assert_eq!(m, Wrapping(0b01010101_00000000));
assert_eq!(m, Wrapping(21760));
1.37.0 (const: 1.37.0) ยท Source

pub const fn reverse_bits(self) -> Wrapping<isize>

Reverses the bit pattern of the integer.

ยงExamples

Please note that this example is shared between integer types. Which explains why i16 is used here.

Basic usage:

use std::num::Wrapping;

let n = Wrapping(0b0000000_01010101i16);
assert_eq!(n, Wrapping(85));

let m = n.reverse_bits();

assert_eq!(m.0 as u16, 0b10101010_00000000);
assert_eq!(m, Wrapping(-22016));
Source

pub const fn from_be(x: Wrapping<isize>) -> Wrapping<isize>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts an integer from big endian to the targetโ€™s endianness.

On big endian this is a no-op. On little endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Aisize);

if cfg!(target_endian = "big") {
    assert_eq!(<Wrapping<isize>>::from_be(n), n)
} else {
    assert_eq!(<Wrapping<isize>>::from_be(n), n.swap_bytes())
}
Source

pub const fn from_le(x: Wrapping<isize>) -> Wrapping<isize>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts an integer from little endian to the targetโ€™s endianness.

On little endian this is a no-op. On big endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Aisize);

if cfg!(target_endian = "little") {
    assert_eq!(<Wrapping<isize>>::from_le(n), n)
} else {
    assert_eq!(<Wrapping<isize>>::from_le(n), n.swap_bytes())
}
Source

pub const fn to_be(self) -> Wrapping<isize>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts self to big endian from the targetโ€™s endianness.

On big endian this is a no-op. On little endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Aisize);

if cfg!(target_endian = "big") {
    assert_eq!(n.to_be(), n)
} else {
    assert_eq!(n.to_be(), n.swap_bytes())
}
Source

pub const fn to_le(self) -> Wrapping<isize>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts self to little endian from the targetโ€™s endianness.

On little endian this is a no-op. On big endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Aisize);

if cfg!(target_endian = "little") {
    assert_eq!(n.to_le(), n)
} else {
    assert_eq!(n.to_le(), n.swap_bytes())
}
Source

pub fn pow(self, exp: u32) -> Wrapping<isize>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(3isize).pow(4), Wrapping(81));

Results that are too large are wrapped:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(3i8).pow(5), Wrapping(-13));
assert_eq!(Wrapping(3i8).pow(6), Wrapping(-39));
Sourceยง

impl Wrapping<i8>

Source

pub const MIN: Wrapping<i8>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(<Wrapping<i8>>::MIN, Wrapping(i8::MIN));
Source

pub const MAX: Wrapping<i8>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(<Wrapping<i8>>::MAX, Wrapping(i8::MAX));
Source

pub const BITS: u32 = 8u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Returns the size of this integer type in bits.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(<Wrapping<i8>>::BITS, i8::BITS);
Source

pub const fn count_ones(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0b01001100i8);

assert_eq!(n.count_ones(), 3);
Source

pub const fn count_zeros(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(!0i8).count_zeros(), 0);
Source

pub const fn trailing_zeros(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0b0101000i8);

assert_eq!(n.trailing_zeros(), 3);
Source

pub const fn rotate_left(self, n: u32) -> Wrapping<i8>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

Please note this isnโ€™t the same operation as the << shifting operator!

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF);
let m: Wrapping<i64> = Wrapping(-0x76543210FEDCBA99);

assert_eq!(n.rotate_left(32), m);
Source

pub const fn rotate_right(self, n: u32) -> Wrapping<i8>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

Please note this isnโ€™t the same operation as the >> shifting operator!

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF);
let m: Wrapping<i64> = Wrapping(-0xFEDCBA987654322);

assert_eq!(n.rotate_right(4), m);
Source

pub const fn swap_bytes(self) -> Wrapping<i8>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Reverses the byte order of the integer.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n: Wrapping<i16> = Wrapping(0b0000000_01010101);
assert_eq!(n, Wrapping(85));

let m = n.swap_bytes();

assert_eq!(m, Wrapping(0b01010101_00000000));
assert_eq!(m, Wrapping(21760));
1.37.0 (const: 1.37.0) ยท Source

pub const fn reverse_bits(self) -> Wrapping<i8>

Reverses the bit pattern of the integer.

ยงExamples

Please note that this example is shared between integer types. Which explains why i16 is used here.

Basic usage:

use std::num::Wrapping;

let n = Wrapping(0b0000000_01010101i16);
assert_eq!(n, Wrapping(85));

let m = n.reverse_bits();

assert_eq!(m.0 as u16, 0b10101010_00000000);
assert_eq!(m, Wrapping(-22016));
Source

pub const fn from_be(x: Wrapping<i8>) -> Wrapping<i8>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts an integer from big endian to the targetโ€™s endianness.

On big endian this is a no-op. On little endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Ai8);

if cfg!(target_endian = "big") {
    assert_eq!(<Wrapping<i8>>::from_be(n), n)
} else {
    assert_eq!(<Wrapping<i8>>::from_be(n), n.swap_bytes())
}
Source

pub const fn from_le(x: Wrapping<i8>) -> Wrapping<i8>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts an integer from little endian to the targetโ€™s endianness.

On little endian this is a no-op. On big endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Ai8);

if cfg!(target_endian = "little") {
    assert_eq!(<Wrapping<i8>>::from_le(n), n)
} else {
    assert_eq!(<Wrapping<i8>>::from_le(n), n.swap_bytes())
}
Source

pub const fn to_be(self) -> Wrapping<i8>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts self to big endian from the targetโ€™s endianness.

On big endian this is a no-op. On little endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Ai8);

if cfg!(target_endian = "big") {
    assert_eq!(n.to_be(), n)
} else {
    assert_eq!(n.to_be(), n.swap_bytes())
}
Source

pub const fn to_le(self) -> Wrapping<i8>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts self to little endian from the targetโ€™s endianness.

On little endian this is a no-op. On big endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Ai8);

if cfg!(target_endian = "little") {
    assert_eq!(n.to_le(), n)
} else {
    assert_eq!(n.to_le(), n.swap_bytes())
}
Source

pub fn pow(self, exp: u32) -> Wrapping<i8>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(3i8).pow(4), Wrapping(81));

Results that are too large are wrapped:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(3i8).pow(5), Wrapping(-13));
assert_eq!(Wrapping(3i8).pow(6), Wrapping(-39));
Sourceยง

impl Wrapping<i16>

Source

pub const MIN: Wrapping<i16>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(<Wrapping<i16>>::MIN, Wrapping(i16::MIN));
Source

pub const MAX: Wrapping<i16>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(<Wrapping<i16>>::MAX, Wrapping(i16::MAX));
Source

pub const BITS: u32 = 16u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Returns the size of this integer type in bits.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(<Wrapping<i16>>::BITS, i16::BITS);
Source

pub const fn count_ones(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0b01001100i16);

assert_eq!(n.count_ones(), 3);
Source

pub const fn count_zeros(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(!0i16).count_zeros(), 0);
Source

pub const fn trailing_zeros(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0b0101000i16);

assert_eq!(n.trailing_zeros(), 3);
Source

pub const fn rotate_left(self, n: u32) -> Wrapping<i16>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

Please note this isnโ€™t the same operation as the << shifting operator!

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF);
let m: Wrapping<i64> = Wrapping(-0x76543210FEDCBA99);

assert_eq!(n.rotate_left(32), m);
Source

pub const fn rotate_right(self, n: u32) -> Wrapping<i16>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

Please note this isnโ€™t the same operation as the >> shifting operator!

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF);
let m: Wrapping<i64> = Wrapping(-0xFEDCBA987654322);

assert_eq!(n.rotate_right(4), m);
Source

pub const fn swap_bytes(self) -> Wrapping<i16>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Reverses the byte order of the integer.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n: Wrapping<i16> = Wrapping(0b0000000_01010101);
assert_eq!(n, Wrapping(85));

let m = n.swap_bytes();

assert_eq!(m, Wrapping(0b01010101_00000000));
assert_eq!(m, Wrapping(21760));
1.37.0 (const: 1.37.0) ยท Source

pub const fn reverse_bits(self) -> Wrapping<i16>

Reverses the bit pattern of the integer.

ยงExamples

Please note that this example is shared between integer types. Which explains why i16 is used here.

Basic usage:

use std::num::Wrapping;

let n = Wrapping(0b0000000_01010101i16);
assert_eq!(n, Wrapping(85));

let m = n.reverse_bits();

assert_eq!(m.0 as u16, 0b10101010_00000000);
assert_eq!(m, Wrapping(-22016));
Source

pub const fn from_be(x: Wrapping<i16>) -> Wrapping<i16>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts an integer from big endian to the targetโ€™s endianness.

On big endian this is a no-op. On little endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Ai16);

if cfg!(target_endian = "big") {
    assert_eq!(<Wrapping<i16>>::from_be(n), n)
} else {
    assert_eq!(<Wrapping<i16>>::from_be(n), n.swap_bytes())
}
Source

pub const fn from_le(x: Wrapping<i16>) -> Wrapping<i16>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts an integer from little endian to the targetโ€™s endianness.

On little endian this is a no-op. On big endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Ai16);

if cfg!(target_endian = "little") {
    assert_eq!(<Wrapping<i16>>::from_le(n), n)
} else {
    assert_eq!(<Wrapping<i16>>::from_le(n), n.swap_bytes())
}
Source

pub const fn to_be(self) -> Wrapping<i16>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts self to big endian from the targetโ€™s endianness.

On big endian this is a no-op. On little endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Ai16);

if cfg!(target_endian = "big") {
    assert_eq!(n.to_be(), n)
} else {
    assert_eq!(n.to_be(), n.swap_bytes())
}
Source

pub const fn to_le(self) -> Wrapping<i16>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts self to little endian from the targetโ€™s endianness.

On little endian this is a no-op. On big endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Ai16);

if cfg!(target_endian = "little") {
    assert_eq!(n.to_le(), n)
} else {
    assert_eq!(n.to_le(), n.swap_bytes())
}
Source

pub fn pow(self, exp: u32) -> Wrapping<i16>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(3i16).pow(4), Wrapping(81));

Results that are too large are wrapped:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(3i8).pow(5), Wrapping(-13));
assert_eq!(Wrapping(3i8).pow(6), Wrapping(-39));
Sourceยง

impl Wrapping<i32>

Source

pub const MIN: Wrapping<i32>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(<Wrapping<i32>>::MIN, Wrapping(i32::MIN));
Source

pub const MAX: Wrapping<i32>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(<Wrapping<i32>>::MAX, Wrapping(i32::MAX));
Source

pub const BITS: u32 = 32u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Returns the size of this integer type in bits.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(<Wrapping<i32>>::BITS, i32::BITS);
Source

pub const fn count_ones(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0b01001100i32);

assert_eq!(n.count_ones(), 3);
Source

pub const fn count_zeros(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(!0i32).count_zeros(), 0);
Source

pub const fn trailing_zeros(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0b0101000i32);

assert_eq!(n.trailing_zeros(), 3);
Source

pub const fn rotate_left(self, n: u32) -> Wrapping<i32>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

Please note this isnโ€™t the same operation as the << shifting operator!

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF);
let m: Wrapping<i64> = Wrapping(-0x76543210FEDCBA99);

assert_eq!(n.rotate_left(32), m);
Source

pub const fn rotate_right(self, n: u32) -> Wrapping<i32>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

Please note this isnโ€™t the same operation as the >> shifting operator!

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF);
let m: Wrapping<i64> = Wrapping(-0xFEDCBA987654322);

assert_eq!(n.rotate_right(4), m);
Source

pub const fn swap_bytes(self) -> Wrapping<i32>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Reverses the byte order of the integer.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n: Wrapping<i16> = Wrapping(0b0000000_01010101);
assert_eq!(n, Wrapping(85));

let m = n.swap_bytes();

assert_eq!(m, Wrapping(0b01010101_00000000));
assert_eq!(m, Wrapping(21760));
1.37.0 (const: 1.37.0) ยท Source

pub const fn reverse_bits(self) -> Wrapping<i32>

Reverses the bit pattern of the integer.

ยงExamples

Please note that this example is shared between integer types. Which explains why i16 is used here.

Basic usage:

use std::num::Wrapping;

let n = Wrapping(0b0000000_01010101i16);
assert_eq!(n, Wrapping(85));

let m = n.reverse_bits();

assert_eq!(m.0 as u16, 0b10101010_00000000);
assert_eq!(m, Wrapping(-22016));
Source

pub const fn from_be(x: Wrapping<i32>) -> Wrapping<i32>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts an integer from big endian to the targetโ€™s endianness.

On big endian this is a no-op. On little endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Ai32);

if cfg!(target_endian = "big") {
    assert_eq!(<Wrapping<i32>>::from_be(n), n)
} else {
    assert_eq!(<Wrapping<i32>>::from_be(n), n.swap_bytes())
}
Source

pub const fn from_le(x: Wrapping<i32>) -> Wrapping<i32>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts an integer from little endian to the targetโ€™s endianness.

On little endian this is a no-op. On big endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Ai32);

if cfg!(target_endian = "little") {
    assert_eq!(<Wrapping<i32>>::from_le(n), n)
} else {
    assert_eq!(<Wrapping<i32>>::from_le(n), n.swap_bytes())
}
Source

pub const fn to_be(self) -> Wrapping<i32>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts self to big endian from the targetโ€™s endianness.

On big endian this is a no-op. On little endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Ai32);

if cfg!(target_endian = "big") {
    assert_eq!(n.to_be(), n)
} else {
    assert_eq!(n.to_be(), n.swap_bytes())
}
Source

pub const fn to_le(self) -> Wrapping<i32>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts self to little endian from the targetโ€™s endianness.

On little endian this is a no-op. On big endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Ai32);

if cfg!(target_endian = "little") {
    assert_eq!(n.to_le(), n)
} else {
    assert_eq!(n.to_le(), n.swap_bytes())
}
Source

pub fn pow(self, exp: u32) -> Wrapping<i32>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(3i32).pow(4), Wrapping(81));

Results that are too large are wrapped:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(3i8).pow(5), Wrapping(-13));
assert_eq!(Wrapping(3i8).pow(6), Wrapping(-39));
Sourceยง

impl Wrapping<i64>

Source

pub const MIN: Wrapping<i64>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(<Wrapping<i64>>::MIN, Wrapping(i64::MIN));
Source

pub const MAX: Wrapping<i64>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(<Wrapping<i64>>::MAX, Wrapping(i64::MAX));
Source

pub const BITS: u32 = 64u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Returns the size of this integer type in bits.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(<Wrapping<i64>>::BITS, i64::BITS);
Source

pub const fn count_ones(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0b01001100i64);

assert_eq!(n.count_ones(), 3);
Source

pub const fn count_zeros(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(!0i64).count_zeros(), 0);
Source

pub const fn trailing_zeros(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0b0101000i64);

assert_eq!(n.trailing_zeros(), 3);
Source

pub const fn rotate_left(self, n: u32) -> Wrapping<i64>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

Please note this isnโ€™t the same operation as the << shifting operator!

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF);
let m: Wrapping<i64> = Wrapping(-0x76543210FEDCBA99);

assert_eq!(n.rotate_left(32), m);
Source

pub const fn rotate_right(self, n: u32) -> Wrapping<i64>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

Please note this isnโ€™t the same operation as the >> shifting operator!

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF);
let m: Wrapping<i64> = Wrapping(-0xFEDCBA987654322);

assert_eq!(n.rotate_right(4), m);
Source

pub const fn swap_bytes(self) -> Wrapping<i64>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Reverses the byte order of the integer.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n: Wrapping<i16> = Wrapping(0b0000000_01010101);
assert_eq!(n, Wrapping(85));

let m = n.swap_bytes();

assert_eq!(m, Wrapping(0b01010101_00000000));
assert_eq!(m, Wrapping(21760));
1.37.0 (const: 1.37.0) ยท Source

pub const fn reverse_bits(self) -> Wrapping<i64>

Reverses the bit pattern of the integer.

ยงExamples

Please note that this example is shared between integer types. Which explains why i16 is used here.

Basic usage:

use std::num::Wrapping;

let n = Wrapping(0b0000000_01010101i16);
assert_eq!(n, Wrapping(85));

let m = n.reverse_bits();

assert_eq!(m.0 as u16, 0b10101010_00000000);
assert_eq!(m, Wrapping(-22016));
Source

pub const fn from_be(x: Wrapping<i64>) -> Wrapping<i64>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts an integer from big endian to the targetโ€™s endianness.

On big endian this is a no-op. On little endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Ai64);

if cfg!(target_endian = "big") {
    assert_eq!(<Wrapping<i64>>::from_be(n), n)
} else {
    assert_eq!(<Wrapping<i64>>::from_be(n), n.swap_bytes())
}
Source

pub const fn from_le(x: Wrapping<i64>) -> Wrapping<i64>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts an integer from little endian to the targetโ€™s endianness.

On little endian this is a no-op. On big endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Ai64);

if cfg!(target_endian = "little") {
    assert_eq!(<Wrapping<i64>>::from_le(n), n)
} else {
    assert_eq!(<Wrapping<i64>>::from_le(n), n.swap_bytes())
}
Source

pub const fn to_be(self) -> Wrapping<i64>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts self to big endian from the targetโ€™s endianness.

On big endian this is a no-op. On little endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Ai64);

if cfg!(target_endian = "big") {
    assert_eq!(n.to_be(), n)
} else {
    assert_eq!(n.to_be(), n.swap_bytes())
}
Source

pub const fn to_le(self) -> Wrapping<i64>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts self to little endian from the targetโ€™s endianness.

On little endian this is a no-op. On big endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Ai64);

if cfg!(target_endian = "little") {
    assert_eq!(n.to_le(), n)
} else {
    assert_eq!(n.to_le(), n.swap_bytes())
}
Source

pub fn pow(self, exp: u32) -> Wrapping<i64>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(3i64).pow(4), Wrapping(81));

Results that are too large are wrapped:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(3i8).pow(5), Wrapping(-13));
assert_eq!(Wrapping(3i8).pow(6), Wrapping(-39));
Sourceยง

impl Wrapping<i128>

Source

pub const MIN: Wrapping<i128>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(<Wrapping<i128>>::MIN, Wrapping(i128::MIN));
Source

pub const MAX: Wrapping<i128>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(<Wrapping<i128>>::MAX, Wrapping(i128::MAX));
Source

pub const BITS: u32 = 128u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Returns the size of this integer type in bits.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(<Wrapping<i128>>::BITS, i128::BITS);
Source

pub const fn count_ones(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0b01001100i128);

assert_eq!(n.count_ones(), 3);
Source

pub const fn count_zeros(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(!0i128).count_zeros(), 0);
Source

pub const fn trailing_zeros(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0b0101000i128);

assert_eq!(n.trailing_zeros(), 3);
Source

pub const fn rotate_left(self, n: u32) -> Wrapping<i128>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

Please note this isnโ€™t the same operation as the << shifting operator!

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF);
let m: Wrapping<i64> = Wrapping(-0x76543210FEDCBA99);

assert_eq!(n.rotate_left(32), m);
Source

pub const fn rotate_right(self, n: u32) -> Wrapping<i128>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

Please note this isnโ€™t the same operation as the >> shifting operator!

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n: Wrapping<i64> = Wrapping(0x0123456789ABCDEF);
let m: Wrapping<i64> = Wrapping(-0xFEDCBA987654322);

assert_eq!(n.rotate_right(4), m);
Source

pub const fn swap_bytes(self) -> Wrapping<i128>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Reverses the byte order of the integer.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n: Wrapping<i16> = Wrapping(0b0000000_01010101);
assert_eq!(n, Wrapping(85));

let m = n.swap_bytes();

assert_eq!(m, Wrapping(0b01010101_00000000));
assert_eq!(m, Wrapping(21760));
1.37.0 (const: 1.37.0) ยท Source

pub const fn reverse_bits(self) -> Wrapping<i128>

Reverses the bit pattern of the integer.

ยงExamples

Please note that this example is shared between integer types. Which explains why i16 is used here.

Basic usage:

use std::num::Wrapping;

let n = Wrapping(0b0000000_01010101i16);
assert_eq!(n, Wrapping(85));

let m = n.reverse_bits();

assert_eq!(m.0 as u16, 0b10101010_00000000);
assert_eq!(m, Wrapping(-22016));
Source

pub const fn from_be(x: Wrapping<i128>) -> Wrapping<i128>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts an integer from big endian to the targetโ€™s endianness.

On big endian this is a no-op. On little endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Ai128);

if cfg!(target_endian = "big") {
    assert_eq!(<Wrapping<i128>>::from_be(n), n)
} else {
    assert_eq!(<Wrapping<i128>>::from_be(n), n.swap_bytes())
}
Source

pub const fn from_le(x: Wrapping<i128>) -> Wrapping<i128>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts an integer from little endian to the targetโ€™s endianness.

On little endian this is a no-op. On big endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Ai128);

if cfg!(target_endian = "little") {
    assert_eq!(<Wrapping<i128>>::from_le(n), n)
} else {
    assert_eq!(<Wrapping<i128>>::from_le(n), n.swap_bytes())
}
Source

pub const fn to_be(self) -> Wrapping<i128>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts self to big endian from the targetโ€™s endianness.

On big endian this is a no-op. On little endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Ai128);

if cfg!(target_endian = "big") {
    assert_eq!(n.to_be(), n)
} else {
    assert_eq!(n.to_be(), n.swap_bytes())
}
Source

pub const fn to_le(self) -> Wrapping<i128>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Converts self to little endian from the targetโ€™s endianness.

On little endian this is a no-op. On big endian the bytes are swapped.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(0x1Ai128);

if cfg!(target_endian = "little") {
    assert_eq!(n.to_le(), n)
} else {
    assert_eq!(n.to_le(), n.swap_bytes())
}
Source

pub fn pow(self, exp: u32) -> Wrapping<i128>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(3i128).pow(4), Wrapping(81));

Results that are too large are wrapped:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(3i8).pow(5), Wrapping(-13));
assert_eq!(Wrapping(3i8).pow(6), Wrapping(-39));
Sourceยง

impl Wrapping<isize>

Source

pub const fn leading_zeros(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(isize::MAX) >> 2;

assert_eq!(n.leading_zeros(), 3);
Source

pub fn abs(self) -> Wrapping<isize>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Computes the absolute value of self, wrapping around at the boundary of the type.

The only case where such wrapping can occur is when one takes the absolute value of the negative minimal value for the type this is a positive value that is too large to represent in the type. In such a case, this function returns MIN itself.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(100isize).abs(), Wrapping(100));
assert_eq!(Wrapping(-100isize).abs(), Wrapping(100));
assert_eq!(Wrapping(isize::MIN).abs(), Wrapping(isize::MIN));
assert_eq!(Wrapping(-128i8).abs().0 as u8, 128u8);
Source

pub fn signum(self) -> Wrapping<isize>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Returns a number representing sign of self.

  • 0 if the number is zero
  • 1 if the number is positive
  • -1 if the number is negative
ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(10isize).signum(), Wrapping(1));
assert_eq!(Wrapping(0isize).signum(), Wrapping(0));
assert_eq!(Wrapping(-10isize).signum(), Wrapping(-1));
Source

pub const fn is_positive(self) -> bool

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Returns true if self is positive and false if the number is zero or negative.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert!(Wrapping(10isize).is_positive());
assert!(!Wrapping(-10isize).is_positive());
Source

pub const fn is_negative(self) -> bool

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Returns true if self is negative and false if the number is zero or positive.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert!(Wrapping(-10isize).is_negative());
assert!(!Wrapping(10isize).is_negative());
Sourceยง

impl Wrapping<i8>

Source

pub const fn leading_zeros(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(i8::MAX) >> 2;

assert_eq!(n.leading_zeros(), 3);
Source

pub fn abs(self) -> Wrapping<i8>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Computes the absolute value of self, wrapping around at the boundary of the type.

The only case where such wrapping can occur is when one takes the absolute value of the negative minimal value for the type this is a positive value that is too large to represent in the type. In such a case, this function returns MIN itself.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(100i8).abs(), Wrapping(100));
assert_eq!(Wrapping(-100i8).abs(), Wrapping(100));
assert_eq!(Wrapping(i8::MIN).abs(), Wrapping(i8::MIN));
assert_eq!(Wrapping(-128i8).abs().0 as u8, 128u8);
Source

pub fn signum(self) -> Wrapping<i8>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Returns a number representing sign of self.

  • 0 if the number is zero
  • 1 if the number is positive
  • -1 if the number is negative
ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(10i8).signum(), Wrapping(1));
assert_eq!(Wrapping(0i8).signum(), Wrapping(0));
assert_eq!(Wrapping(-10i8).signum(), Wrapping(-1));
Source

pub const fn is_positive(self) -> bool

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Returns true if self is positive and false if the number is zero or negative.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert!(Wrapping(10i8).is_positive());
assert!(!Wrapping(-10i8).is_positive());
Source

pub const fn is_negative(self) -> bool

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Returns true if self is negative and false if the number is zero or positive.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert!(Wrapping(-10i8).is_negative());
assert!(!Wrapping(10i8).is_negative());
Sourceยง

impl Wrapping<i16>

Source

pub const fn leading_zeros(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(i16::MAX) >> 2;

assert_eq!(n.leading_zeros(), 3);
Source

pub fn abs(self) -> Wrapping<i16>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Computes the absolute value of self, wrapping around at the boundary of the type.

The only case where such wrapping can occur is when one takes the absolute value of the negative minimal value for the type this is a positive value that is too large to represent in the type. In such a case, this function returns MIN itself.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(100i16).abs(), Wrapping(100));
assert_eq!(Wrapping(-100i16).abs(), Wrapping(100));
assert_eq!(Wrapping(i16::MIN).abs(), Wrapping(i16::MIN));
assert_eq!(Wrapping(-128i8).abs().0 as u8, 128u8);
Source

pub fn signum(self) -> Wrapping<i16>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Returns a number representing sign of self.

  • 0 if the number is zero
  • 1 if the number is positive
  • -1 if the number is negative
ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(10i16).signum(), Wrapping(1));
assert_eq!(Wrapping(0i16).signum(), Wrapping(0));
assert_eq!(Wrapping(-10i16).signum(), Wrapping(-1));
Source

pub const fn is_positive(self) -> bool

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Returns true if self is positive and false if the number is zero or negative.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert!(Wrapping(10i16).is_positive());
assert!(!Wrapping(-10i16).is_positive());
Source

pub const fn is_negative(self) -> bool

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Returns true if self is negative and false if the number is zero or positive.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert!(Wrapping(-10i16).is_negative());
assert!(!Wrapping(10i16).is_negative());
Sourceยง

impl Wrapping<i32>

Source

pub const fn leading_zeros(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(i32::MAX) >> 2;

assert_eq!(n.leading_zeros(), 3);
Source

pub fn abs(self) -> Wrapping<i32>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Computes the absolute value of self, wrapping around at the boundary of the type.

The only case where such wrapping can occur is when one takes the absolute value of the negative minimal value for the type this is a positive value that is too large to represent in the type. In such a case, this function returns MIN itself.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(100i32).abs(), Wrapping(100));
assert_eq!(Wrapping(-100i32).abs(), Wrapping(100));
assert_eq!(Wrapping(i32::MIN).abs(), Wrapping(i32::MIN));
assert_eq!(Wrapping(-128i8).abs().0 as u8, 128u8);
Source

pub fn signum(self) -> Wrapping<i32>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Returns a number representing sign of self.

  • 0 if the number is zero
  • 1 if the number is positive
  • -1 if the number is negative
ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(10i32).signum(), Wrapping(1));
assert_eq!(Wrapping(0i32).signum(), Wrapping(0));
assert_eq!(Wrapping(-10i32).signum(), Wrapping(-1));
Source

pub const fn is_positive(self) -> bool

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Returns true if self is positive and false if the number is zero or negative.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert!(Wrapping(10i32).is_positive());
assert!(!Wrapping(-10i32).is_positive());
Source

pub const fn is_negative(self) -> bool

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Returns true if self is negative and false if the number is zero or positive.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert!(Wrapping(-10i32).is_negative());
assert!(!Wrapping(10i32).is_negative());
Sourceยง

impl Wrapping<i64>

Source

pub const fn leading_zeros(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(i64::MAX) >> 2;

assert_eq!(n.leading_zeros(), 3);
Source

pub fn abs(self) -> Wrapping<i64>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Computes the absolute value of self, wrapping around at the boundary of the type.

The only case where such wrapping can occur is when one takes the absolute value of the negative minimal value for the type this is a positive value that is too large to represent in the type. In such a case, this function returns MIN itself.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(100i64).abs(), Wrapping(100));
assert_eq!(Wrapping(-100i64).abs(), Wrapping(100));
assert_eq!(Wrapping(i64::MIN).abs(), Wrapping(i64::MIN));
assert_eq!(Wrapping(-128i8).abs().0 as u8, 128u8);
Source

pub fn signum(self) -> Wrapping<i64>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Returns a number representing sign of self.

  • 0 if the number is zero
  • 1 if the number is positive
  • -1 if the number is negative
ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(10i64).signum(), Wrapping(1));
assert_eq!(Wrapping(0i64).signum(), Wrapping(0));
assert_eq!(Wrapping(-10i64).signum(), Wrapping(-1));
Source

pub const fn is_positive(self) -> bool

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Returns true if self is positive and false if the number is zero or negative.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert!(Wrapping(10i64).is_positive());
assert!(!Wrapping(-10i64).is_positive());
Source

pub const fn is_negative(self) -> bool

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Returns true if self is negative and false if the number is zero or positive.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert!(Wrapping(-10i64).is_negative());
assert!(!Wrapping(10i64).is_negative());
Sourceยง

impl Wrapping<i128>

Source

pub const fn leading_zeros(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(i128::MAX) >> 2;

assert_eq!(n.leading_zeros(), 3);
Source

pub fn abs(self) -> Wrapping<i128>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Computes the absolute value of self, wrapping around at the boundary of the type.

The only case where such wrapping can occur is when one takes the absolute value of the negative minimal value for the type this is a positive value that is too large to represent in the type. In such a case, this function returns MIN itself.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(100i128).abs(), Wrapping(100));
assert_eq!(Wrapping(-100i128).abs(), Wrapping(100));
assert_eq!(Wrapping(i128::MIN).abs(), Wrapping(i128::MIN));
assert_eq!(Wrapping(-128i8).abs().0 as u8, 128u8);
Source

pub fn signum(self) -> Wrapping<i128>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Returns a number representing sign of self.

  • 0 if the number is zero
  • 1 if the number is positive
  • -1 if the number is negative
ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert_eq!(Wrapping(10i128).signum(), Wrapping(1));
assert_eq!(Wrapping(0i128).signum(), Wrapping(0));
assert_eq!(Wrapping(-10i128).signum(), Wrapping(-1));
Source

pub const fn is_positive(self) -> bool

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Returns true if self is positive and false if the number is zero or negative.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert!(Wrapping(10i128).is_positive());
assert!(!Wrapping(-10i128).is_positive());
Source

pub const fn is_negative(self) -> bool

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

Returns true if self is negative and false if the number is zero or positive.

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert!(Wrapping(-10i128).is_negative());
assert!(!Wrapping(10i128).is_negative());
Sourceยง

impl Wrapping<usize>

Source

pub const fn leading_zeros(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(usize::MAX) >> 2;

assert_eq!(n.leading_zeros(), 2);
Source

pub fn is_power_of_two(self) -> bool

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert!(Wrapping(16usize).is_power_of_two());
assert!(!Wrapping(10usize).is_power_of_two());
Source

pub fn next_power_of_two(self) -> Wrapping<usize>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_next_power_of_two)

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

When return value overflows (i.e., self > (1 << (N-1)) for type uN), overflows to 2^N = 0.

ยงExamples

Basic usage:

#![feature(wrapping_next_power_of_two)]
use std::num::Wrapping;

assert_eq!(Wrapping(2usize).next_power_of_two(), Wrapping(2));
assert_eq!(Wrapping(3usize).next_power_of_two(), Wrapping(4));
assert_eq!(Wrapping(200_u8).next_power_of_two(), Wrapping(0));
Sourceยง

impl Wrapping<u8>

Source

pub const fn leading_zeros(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(u8::MAX) >> 2;

assert_eq!(n.leading_zeros(), 2);
Source

pub fn is_power_of_two(self) -> bool

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert!(Wrapping(16u8).is_power_of_two());
assert!(!Wrapping(10u8).is_power_of_two());
Source

pub fn next_power_of_two(self) -> Wrapping<u8>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_next_power_of_two)

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

When return value overflows (i.e., self > (1 << (N-1)) for type uN), overflows to 2^N = 0.

ยงExamples

Basic usage:

#![feature(wrapping_next_power_of_two)]
use std::num::Wrapping;

assert_eq!(Wrapping(2u8).next_power_of_two(), Wrapping(2));
assert_eq!(Wrapping(3u8).next_power_of_two(), Wrapping(4));
assert_eq!(Wrapping(200_u8).next_power_of_two(), Wrapping(0));
Sourceยง

impl Wrapping<u16>

Source

pub const fn leading_zeros(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(u16::MAX) >> 2;

assert_eq!(n.leading_zeros(), 2);
Source

pub fn is_power_of_two(self) -> bool

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert!(Wrapping(16u16).is_power_of_two());
assert!(!Wrapping(10u16).is_power_of_two());
Source

pub fn next_power_of_two(self) -> Wrapping<u16>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_next_power_of_two)

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

When return value overflows (i.e., self > (1 << (N-1)) for type uN), overflows to 2^N = 0.

ยงExamples

Basic usage:

#![feature(wrapping_next_power_of_two)]
use std::num::Wrapping;

assert_eq!(Wrapping(2u16).next_power_of_two(), Wrapping(2));
assert_eq!(Wrapping(3u16).next_power_of_two(), Wrapping(4));
assert_eq!(Wrapping(200_u8).next_power_of_two(), Wrapping(0));
Sourceยง

impl Wrapping<u32>

Source

pub const fn leading_zeros(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(u32::MAX) >> 2;

assert_eq!(n.leading_zeros(), 2);
Source

pub fn is_power_of_two(self) -> bool

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert!(Wrapping(16u32).is_power_of_two());
assert!(!Wrapping(10u32).is_power_of_two());
Source

pub fn next_power_of_two(self) -> Wrapping<u32>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_next_power_of_two)

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

When return value overflows (i.e., self > (1 << (N-1)) for type uN), overflows to 2^N = 0.

ยงExamples

Basic usage:

#![feature(wrapping_next_power_of_two)]
use std::num::Wrapping;

assert_eq!(Wrapping(2u32).next_power_of_two(), Wrapping(2));
assert_eq!(Wrapping(3u32).next_power_of_two(), Wrapping(4));
assert_eq!(Wrapping(200_u8).next_power_of_two(), Wrapping(0));
Sourceยง

impl Wrapping<u64>

Source

pub const fn leading_zeros(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(u64::MAX) >> 2;

assert_eq!(n.leading_zeros(), 2);
Source

pub fn is_power_of_two(self) -> bool

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert!(Wrapping(16u64).is_power_of_two());
assert!(!Wrapping(10u64).is_power_of_two());
Source

pub fn next_power_of_two(self) -> Wrapping<u64>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_next_power_of_two)

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

When return value overflows (i.e., self > (1 << (N-1)) for type uN), overflows to 2^N = 0.

ยงExamples

Basic usage:

#![feature(wrapping_next_power_of_two)]
use std::num::Wrapping;

assert_eq!(Wrapping(2u64).next_power_of_two(), Wrapping(2));
assert_eq!(Wrapping(3u64).next_power_of_two(), Wrapping(4));
assert_eq!(Wrapping(200_u8).next_power_of_two(), Wrapping(0));
Sourceยง

impl Wrapping<u128>

Source

pub const fn leading_zeros(self) -> u32

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

let n = Wrapping(u128::MAX) >> 2;

assert_eq!(n.leading_zeros(), 2);
Source

pub fn is_power_of_two(self) -> bool

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_int_impl)

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

ยงExamples

Basic usage:

#![feature(wrapping_int_impl)]
use std::num::Wrapping;

assert!(Wrapping(16u128).is_power_of_two());
assert!(!Wrapping(10u128).is_power_of_two());
Source

pub fn next_power_of_two(self) -> Wrapping<u128>

๐Ÿ”ฌThis is a nightly-only experimental API. (wrapping_next_power_of_two)

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

When return value overflows (i.e., self > (1 << (N-1)) for type uN), overflows to 2^N = 0.

ยงExamples

Basic usage:

#![feature(wrapping_next_power_of_two)]
use std::num::Wrapping;

assert_eq!(Wrapping(2u128).next_power_of_two(), Wrapping(2));
assert_eq!(Wrapping(3u128).next_power_of_two(), Wrapping(4));
assert_eq!(Wrapping(200_u8).next_power_of_two(), Wrapping(0));

Trait Implementationsยง

1.14.0 ยท Sourceยง

impl Add<&Wrapping<i128>> for &Wrapping<i128>

Sourceยง

type Output = <Wrapping<i128> as Add>::Output

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: &Wrapping<i128>) -> <Wrapping<i128> as Add>::Output

Performs the + operation. Read more
1.14.0 ยท Sourceยง

impl Add<&Wrapping<i128>> for Wrapping<i128>

Sourceยง

type Output = <Wrapping<i128> as Add>::Output

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: &Wrapping<i128>) -> <Wrapping<i128> as Add>::Output

Performs the + operation. Read more
1.14.0 ยท Sourceยง

impl Add<&Wrapping<i16>> for &Wrapping<i16>

Sourceยง

type Output = <Wrapping<i16> as Add>::Output

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: &Wrapping<i16>) -> <Wrapping<i16> as Add>::Output

Performs the + operation. Read more
1.14.0 ยท Sourceยง

impl Add<&Wrapping<i16>> for Wrapping<i16>

Sourceยง

type Output = <Wrapping<i16> as Add>::Output

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: &Wrapping<i16>) -> <Wrapping<i16> as Add>::Output

Performs the + operation. Read more
1.14.0 ยท Sourceยง

impl Add<&Wrapping<i32>> for &Wrapping<i32>

Sourceยง

type Output = <Wrapping<i32> as Add>::Output

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: &Wrapping<i32>) -> <Wrapping<i32> as Add>::Output

Performs the + operation. Read more
1.14.0 ยท Sourceยง

impl Add<&Wrapping<i32>> for Wrapping<i32>

Sourceยง

type Output = <Wrapping<i32> as Add>::Output

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: &Wrapping<i32>) -> <Wrapping<i32> as Add>::Output

Performs the + operation. Read more
1.14.0 ยท Sourceยง

impl Add<&Wrapping<i64>> for &Wrapping<i64>

Sourceยง

type Output = <Wrapping<i64> as Add>::Output

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: &Wrapping<i64>) -> <Wrapping<i64> as Add>::Output

Performs the + operation. Read more
1.14.0 ยท Sourceยง

impl Add<&Wrapping<i64>> for Wrapping<i64>

Sourceยง

type Output = <Wrapping<i64> as Add>::Output

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: &Wrapping<i64>) -> <Wrapping<i64> as Add>::Output

Performs the + operation. Read more
1.14.0 ยท Sourceยง

impl Add<&Wrapping<i8>> for &Wrapping<i8>

Sourceยง

type Output = <Wrapping<i8> as Add>::Output

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: &Wrapping<i8>) -> <Wrapping<i8> as Add>::Output

Performs the + operation. Read more
1.14.0 ยท Sourceยง

impl Add<&Wrapping<i8>> for Wrapping<i8>

Sourceยง

type Output = <Wrapping<i8> as Add>::Output

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: &Wrapping<i8>) -> <Wrapping<i8> as Add>::Output

Performs the + operation. Read more
1.14.0 ยท Sourceยง

impl Add<&Wrapping<isize>> for &Wrapping<isize>

Sourceยง

type Output = <Wrapping<isize> as Add>::Output

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: &Wrapping<isize>) -> <Wrapping<isize> as Add>::Output

Performs the + operation. Read more
1.14.0 ยท Sourceยง

impl Add<&Wrapping<isize>> for Wrapping<isize>

Sourceยง

type Output = <Wrapping<isize> as Add>::Output

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: &Wrapping<isize>) -> <Wrapping<isize> as Add>::Output

Performs the + operation. Read more
1.14.0 ยท Sourceยง

impl Add<&Wrapping<u128>> for &Wrapping<u128>

Sourceยง

type Output = <Wrapping<u128> as Add>::Output

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: &Wrapping<u128>) -> <Wrapping<u128> as Add>::Output

Performs the + operation. Read more
1.14.0 ยท Sourceยง

impl Add<&Wrapping<u128>> for Wrapping<u128>

Sourceยง

type Output = <Wrapping<u128> as Add>::Output

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: &Wrapping<u128>) -> <Wrapping<u128> as Add>::Output

Performs the + operation. Read more
1.14.0 ยท Sourceยง

impl Add<&Wrapping<u16>> for &Wrapping<u16>

Sourceยง

type Output = <Wrapping<u16> as Add>::Output

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: &Wrapping<u16>) -> <Wrapping<u16> as Add>::Output

Performs the + operation. Read more
1.14.0 ยท Sourceยง

impl Add<&Wrapping<u16>> for Wrapping<u16>

Sourceยง

type Output = <Wrapping<u16> as Add>::Output

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: &Wrapping<u16>) -> <Wrapping<u16> as Add>::Output

Performs the + operation. Read more
1.14.0 ยท Sourceยง

impl Add<&Wrapping<u32>> for &Wrapping<u32>

Sourceยง

type Output = <Wrapping<u32> as Add>::Output

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: &Wrapping<u32>) -> <Wrapping<u32> as Add>::Output

Performs the + operation. Read more
1.14.0 ยท Sourceยง

impl Add<&Wrapping<u32>> for Wrapping<u32>

Sourceยง

type Output = <Wrapping<u32> as Add>::Output

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: &Wrapping<u32>) -> <Wrapping<u32> as Add>::Output

Performs the + operation. Read more
1.14.0 ยท Sourceยง

impl Add<&Wrapping<u64>> for &Wrapping<u64>

Sourceยง

type Output = <Wrapping<u64> as Add>::Output

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: &Wrapping<u64>) -> <Wrapping<u64> as Add>::Output

Performs the + operation. Read more
1.14.0 ยท Sourceยง

impl Add<&Wrapping<u64>> for Wrapping<u64>

Sourceยง

type Output = <Wrapping<u64> as Add>::Output

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: &Wrapping<u64>) -> <Wrapping<u64> as Add>::Output

Performs the + operation. Read more
1.14.0 ยท Sourceยง

impl Add<&Wrapping<u8>> for &Wrapping<u8>

Sourceยง

type Output = <Wrapping<u8> as Add>::Output

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: &Wrapping<u8>) -> <Wrapping<u8> as Add>::Output

Performs the + operation. Read more
1.14.0 ยท Sourceยง

impl Add<&Wrapping<u8>> for Wrapping<u8>

Sourceยง

type Output = <Wrapping<u8> as Add>::Output

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: &Wrapping<u8>) -> <Wrapping<u8> as Add>::Output

Performs the + operation. Read more
1.14.0 ยท Sourceยง

impl Add<&Wrapping<usize>> for &Wrapping<usize>

Sourceยง

type Output = <Wrapping<usize> as Add>::Output

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: &Wrapping<usize>) -> <Wrapping<usize> as Add>::Output

Performs the + operation. Read more
1.14.0 ยท Sourceยง

impl Add<&Wrapping<usize>> for Wrapping<usize>

Sourceยง

type Output = <Wrapping<usize> as Add>::Output

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: &Wrapping<usize>) -> <Wrapping<usize> as Add>::Output

Performs the + operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<i128> as Add>::Output

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: Wrapping<i128>) -> <Wrapping<i128> as Add>::Output

Performs the + operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<i16> as Add>::Output

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: Wrapping<i16>) -> <Wrapping<i16> as Add>::Output

Performs the + operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<i32> as Add>::Output

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: Wrapping<i32>) -> <Wrapping<i32> as Add>::Output

Performs the + operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<i64> as Add>::Output

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: Wrapping<i64>) -> <Wrapping<i64> as Add>::Output

Performs the + operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<i8> as Add>::Output

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: Wrapping<i8>) -> <Wrapping<i8> as Add>::Output

Performs the + operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<isize> as Add>::Output

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: Wrapping<isize>) -> <Wrapping<isize> as Add>::Output

Performs the + operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<u128> as Add>::Output

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: Wrapping<u128>) -> <Wrapping<u128> as Add>::Output

Performs the + operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<u16> as Add>::Output

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: Wrapping<u16>) -> <Wrapping<u16> as Add>::Output

Performs the + operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<u32> as Add>::Output

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: Wrapping<u32>) -> <Wrapping<u32> as Add>::Output

Performs the + operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<u64> as Add>::Output

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: Wrapping<u64>) -> <Wrapping<u64> as Add>::Output

Performs the + operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<u8> as Add>::Output

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: Wrapping<u8>) -> <Wrapping<u8> as Add>::Output

Performs the + operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<usize> as Add>::Output

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: Wrapping<usize>) -> <Wrapping<usize> as Add>::Output

Performs the + operation. Read more
1.0.0 ยท Sourceยง

impl Add for Wrapping<i128>

Sourceยง

type Output = Wrapping<i128>

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: Wrapping<i128>) -> Wrapping<i128>

Performs the + operation. Read more
1.0.0 ยท Sourceยง

impl Add for Wrapping<i16>

Sourceยง

type Output = Wrapping<i16>

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: Wrapping<i16>) -> Wrapping<i16>

Performs the + operation. Read more
1.0.0 ยท Sourceยง

impl Add for Wrapping<i32>

Sourceยง

type Output = Wrapping<i32>

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: Wrapping<i32>) -> Wrapping<i32>

Performs the + operation. Read more
1.0.0 ยท Sourceยง

impl Add for Wrapping<i64>

Sourceยง

type Output = Wrapping<i64>

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: Wrapping<i64>) -> Wrapping<i64>

Performs the + operation. Read more
1.0.0 ยท Sourceยง

impl Add for Wrapping<i8>

Sourceยง

type Output = Wrapping<i8>

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: Wrapping<i8>) -> Wrapping<i8>

Performs the + operation. Read more
1.0.0 ยท Sourceยง

impl Add for Wrapping<isize>

Sourceยง

type Output = Wrapping<isize>

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: Wrapping<isize>) -> Wrapping<isize>

Performs the + operation. Read more
1.0.0 ยท Sourceยง

impl Add for Wrapping<u128>

Sourceยง

type Output = Wrapping<u128>

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: Wrapping<u128>) -> Wrapping<u128>

Performs the + operation. Read more
1.0.0 ยท Sourceยง

impl Add for Wrapping<u16>

Sourceยง

type Output = Wrapping<u16>

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: Wrapping<u16>) -> Wrapping<u16>

Performs the + operation. Read more
1.0.0 ยท Sourceยง

impl Add for Wrapping<u32>

Sourceยง

type Output = Wrapping<u32>

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: Wrapping<u32>) -> Wrapping<u32>

Performs the + operation. Read more
1.0.0 ยท Sourceยง

impl Add for Wrapping<u64>

Sourceยง

type Output = Wrapping<u64>

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: Wrapping<u64>) -> Wrapping<u64>

Performs the + operation. Read more
1.0.0 ยท Sourceยง

impl Add for Wrapping<u8>

Sourceยง

type Output = Wrapping<u8>

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: Wrapping<u8>) -> Wrapping<u8>

Performs the + operation. Read more
1.0.0 ยท Sourceยง

impl Add for Wrapping<usize>

Sourceยง

type Output = Wrapping<usize>

The resulting type after applying the + operator.
Sourceยง

fn add(self, other: Wrapping<usize>) -> Wrapping<usize>

Performs the + operation. Read more
1.22.0 ยท Sourceยง

impl AddAssign<&Wrapping<i128>> for Wrapping<i128>

Sourceยง

fn add_assign(&mut self, other: &Wrapping<i128>)

Performs the += operation. Read more
1.22.0 ยท Sourceยง

impl AddAssign<&Wrapping<i16>> for Wrapping<i16>

Sourceยง

fn add_assign(&mut self, other: &Wrapping<i16>)

Performs the += operation. Read more
1.22.0 ยท Sourceยง

impl AddAssign<&Wrapping<i32>> for Wrapping<i32>

Sourceยง

fn add_assign(&mut self, other: &Wrapping<i32>)

Performs the += operation. Read more
1.22.0 ยท Sourceยง

impl AddAssign<&Wrapping<i64>> for Wrapping<i64>

Sourceยง

fn add_assign(&mut self, other: &Wrapping<i64>)

Performs the += operation. Read more
1.22.0 ยท Sourceยง

impl AddAssign<&Wrapping<i8>> for Wrapping<i8>

Sourceยง

fn add_assign(&mut self, other: &Wrapping<i8>)

Performs the += operation. Read more
1.22.0 ยท Sourceยง

impl AddAssign<&Wrapping<isize>> for Wrapping<isize>

Sourceยง

fn add_assign(&mut self, other: &Wrapping<isize>)

Performs the += operation. Read more
1.22.0 ยท Sourceยง

impl AddAssign<&Wrapping<u128>> for Wrapping<u128>

Sourceยง

fn add_assign(&mut self, other: &Wrapping<u128>)

Performs the += operation. Read more
1.22.0 ยท Sourceยง

impl AddAssign<&Wrapping<u16>> for Wrapping<u16>

Sourceยง

fn add_assign(&mut self, other: &Wrapping<u16>)

Performs the += operation. Read more
1.22.0 ยท Sourceยง

impl AddAssign<&Wrapping<u32>> for Wrapping<u32>

Sourceยง

fn add_assign(&mut self, other: &Wrapping<u32>)

Performs the += operation. Read more
1.22.0 ยท Sourceยง

impl AddAssign<&Wrapping<u64>> for Wrapping<u64>

Sourceยง

fn add_assign(&mut self, other: &Wrapping<u64>)

Performs the += operation. Read more
1.22.0 ยท Sourceยง

impl AddAssign<&Wrapping<u8>> for Wrapping<u8>

Sourceยง

fn add_assign(&mut self, other: &Wrapping<u8>)

Performs the += operation. Read more
1.22.0 ยท Sourceยง

impl AddAssign<&Wrapping<usize>> for Wrapping<usize>

Sourceยง

fn add_assign(&mut self, other: &Wrapping<usize>)

Performs the += operation. Read more
1.22.0 ยท Sourceยง

impl AddAssign<&i128> for Wrapping<i128>

Sourceยง

fn add_assign(&mut self, other: &i128)

Performs the += operation. Read more
1.22.0 ยท Sourceยง

impl AddAssign<&i16> for Wrapping<i16>

Sourceยง

fn add_assign(&mut self, other: &i16)

Performs the += operation. Read more
1.22.0 ยท Sourceยง

impl AddAssign<&i32> for Wrapping<i32>

Sourceยง

fn add_assign(&mut self, other: &i32)

Performs the += operation. Read more
1.22.0 ยท Sourceยง

impl AddAssign<&i64> for Wrapping<i64>

Sourceยง

fn add_assign(&mut self, other: &i64)

Performs the += operation. Read more
1.22.0 ยท Sourceยง

impl AddAssign<&i8> for Wrapping<i8>

Sourceยง

fn add_assign(&mut self, other: &i8)

Performs the += operation. Read more
1.22.0 ยท Sourceยง

impl AddAssign<&isize> for Wrapping<isize>

Sourceยง

fn add_assign(&mut self, other: &isize)

Performs the += operation. Read more
1.22.0 ยท Sourceยง

impl AddAssign<&u128> for Wrapping<u128>

Sourceยง

fn add_assign(&mut self, other: &u128)

Performs the += operation. Read more
1.22.0 ยท Sourceยง

impl AddAssign<&u16> for Wrapping<u16>

Sourceยง

fn add_assign(&mut self, other: &u16)

Performs the += operation. Read more
1.22.0 ยท Sourceยง

impl AddAssign<&u32> for Wrapping<u32>

Sourceยง

fn add_assign(&mut self, other: &u32)

Performs the += operation. Read more
1.22.0 ยท Sourceยง

impl AddAssign<&u64> for Wrapping<u64>

Sourceยง

fn add_assign(&mut self, other: &u64)

Performs the += operation. Read more
1.22.0 ยท Sourceยง

impl AddAssign<&u8> for Wrapping<u8>

Sourceยง

fn add_assign(&mut self, other: &u8)

Performs the += operation. Read more
1.22.0 ยท Sourceยง

impl AddAssign<&usize> for Wrapping<usize>

Sourceยง

fn add_assign(&mut self, other: &usize)

Performs the += operation. Read more
1.60.0 ยท Sourceยง

impl AddAssign<i128> for Wrapping<i128>

Sourceยง

fn add_assign(&mut self, other: i128)

Performs the += operation. Read more
1.60.0 ยท Sourceยง

impl AddAssign<i16> for Wrapping<i16>

Sourceยง

fn add_assign(&mut self, other: i16)

Performs the += operation. Read more
1.60.0 ยท Sourceยง

impl AddAssign<i32> for Wrapping<i32>

Sourceยง

fn add_assign(&mut self, other: i32)

Performs the += operation. Read more
1.60.0 ยท Sourceยง

impl AddAssign<i64> for Wrapping<i64>

Sourceยง

fn add_assign(&mut self, other: i64)

Performs the += operation. Read more
1.60.0 ยท Sourceยง

impl AddAssign<i8> for Wrapping<i8>

Sourceยง

fn add_assign(&mut self, other: i8)

Performs the += operation. Read more
1.60.0 ยท Sourceยง

impl AddAssign<isize> for Wrapping<isize>

Sourceยง

fn add_assign(&mut self, other: isize)

Performs the += operation. Read more
1.60.0 ยท Sourceยง

impl AddAssign<u128> for Wrapping<u128>

Sourceยง

fn add_assign(&mut self, other: u128)

Performs the += operation. Read more
1.60.0 ยท Sourceยง

impl AddAssign<u16> for Wrapping<u16>

Sourceยง

fn add_assign(&mut self, other: u16)

Performs the += operation. Read more
1.60.0 ยท Sourceยง

impl AddAssign<u32> for Wrapping<u32>

Sourceยง

fn add_assign(&mut self, other: u32)

Performs the += operation. Read more
1.60.0 ยท Sourceยง

impl AddAssign<u64> for Wrapping<u64>

Sourceยง

fn add_assign(&mut self, other: u64)

Performs the += operation. Read more
1.60.0 ยท Sourceยง

impl AddAssign<u8> for Wrapping<u8>

Sourceยง

fn add_assign(&mut self, other: u8)

Performs the += operation. Read more
1.60.0 ยท Sourceยง

impl AddAssign<usize> for Wrapping<usize>

Sourceยง

fn add_assign(&mut self, other: usize)

Performs the += operation. Read more
1.8.0 ยท Sourceยง

impl AddAssign for Wrapping<i128>

Sourceยง

fn add_assign(&mut self, other: Wrapping<i128>)

Performs the += operation. Read more
1.8.0 ยท Sourceยง

impl AddAssign for Wrapping<i16>

Sourceยง

fn add_assign(&mut self, other: Wrapping<i16>)

Performs the += operation. Read more
1.8.0 ยท Sourceยง

impl AddAssign for Wrapping<i32>

Sourceยง

fn add_assign(&mut self, other: Wrapping<i32>)

Performs the += operation. Read more
1.8.0 ยท Sourceยง

impl AddAssign for Wrapping<i64>

Sourceยง

fn add_assign(&mut self, other: Wrapping<i64>)

Performs the += operation. Read more
1.8.0 ยท Sourceยง

impl AddAssign for Wrapping<i8>

Sourceยง

fn add_assign(&mut self, other: Wrapping<i8>)

Performs the += operation. Read more
1.8.0 ยท Sourceยง

impl AddAssign for Wrapping<isize>

Sourceยง

fn add_assign(&mut self, other: Wrapping<isize>)

Performs the += operation. Read more
1.8.0 ยท Sourceยง

impl AddAssign for Wrapping<u128>

Sourceยง

fn add_assign(&mut self, other: Wrapping<u128>)

Performs the += operation. Read more
1.8.0 ยท Sourceยง

impl AddAssign for Wrapping<u16>

Sourceยง

fn add_assign(&mut self, other: Wrapping<u16>)

Performs the += operation. Read more
1.8.0 ยท Sourceยง

impl AddAssign for Wrapping<u32>

Sourceยง

fn add_assign(&mut self, other: Wrapping<u32>)

Performs the += operation. Read more
1.8.0 ยท Sourceยง

impl AddAssign for Wrapping<u64>

Sourceยง

fn add_assign(&mut self, other: Wrapping<u64>)

Performs the += operation. Read more
1.8.0 ยท Sourceยง

impl AddAssign for Wrapping<u8>

Sourceยง

fn add_assign(&mut self, other: Wrapping<u8>)

Performs the += operation. Read more
1.8.0 ยท Sourceยง

impl AddAssign for Wrapping<usize>

Sourceยง

fn add_assign(&mut self, other: Wrapping<usize>)

Performs the += operation. Read more
1.11.0 ยท Sourceยง

impl<T> Binary for Wrapping<T>
where T: Binary,

Sourceยง

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

Formats the value using the given formatter. Read more
1.14.0 ยท Sourceยง

impl BitAnd<&Wrapping<i128>> for &Wrapping<i128>

Sourceยง

type Output = <Wrapping<i128> as BitAnd>::Output

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: &Wrapping<i128>) -> <Wrapping<i128> as BitAnd>::Output

Performs the & operation. Read more
1.14.0 ยท Sourceยง

impl BitAnd<&Wrapping<i128>> for Wrapping<i128>

Sourceยง

type Output = <Wrapping<i128> as BitAnd>::Output

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: &Wrapping<i128>) -> <Wrapping<i128> as BitAnd>::Output

Performs the & operation. Read more
1.14.0 ยท Sourceยง

impl BitAnd<&Wrapping<i16>> for &Wrapping<i16>

Sourceยง

type Output = <Wrapping<i16> as BitAnd>::Output

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: &Wrapping<i16>) -> <Wrapping<i16> as BitAnd>::Output

Performs the & operation. Read more
1.14.0 ยท Sourceยง

impl BitAnd<&Wrapping<i16>> for Wrapping<i16>

Sourceยง

type Output = <Wrapping<i16> as BitAnd>::Output

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: &Wrapping<i16>) -> <Wrapping<i16> as BitAnd>::Output

Performs the & operation. Read more
1.14.0 ยท Sourceยง

impl BitAnd<&Wrapping<i32>> for &Wrapping<i32>

Sourceยง

type Output = <Wrapping<i32> as BitAnd>::Output

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: &Wrapping<i32>) -> <Wrapping<i32> as BitAnd>::Output

Performs the & operation. Read more
1.14.0 ยท Sourceยง

impl BitAnd<&Wrapping<i32>> for Wrapping<i32>

Sourceยง

type Output = <Wrapping<i32> as BitAnd>::Output

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: &Wrapping<i32>) -> <Wrapping<i32> as BitAnd>::Output

Performs the & operation. Read more
1.14.0 ยท Sourceยง

impl BitAnd<&Wrapping<i64>> for &Wrapping<i64>

Sourceยง

type Output = <Wrapping<i64> as BitAnd>::Output

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: &Wrapping<i64>) -> <Wrapping<i64> as BitAnd>::Output

Performs the & operation. Read more
1.14.0 ยท Sourceยง

impl BitAnd<&Wrapping<i64>> for Wrapping<i64>

Sourceยง

type Output = <Wrapping<i64> as BitAnd>::Output

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: &Wrapping<i64>) -> <Wrapping<i64> as BitAnd>::Output

Performs the & operation. Read more
1.14.0 ยท Sourceยง

impl BitAnd<&Wrapping<i8>> for &Wrapping<i8>

Sourceยง

type Output = <Wrapping<i8> as BitAnd>::Output

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: &Wrapping<i8>) -> <Wrapping<i8> as BitAnd>::Output

Performs the & operation. Read more
1.14.0 ยท Sourceยง

impl BitAnd<&Wrapping<i8>> for Wrapping<i8>

Sourceยง

type Output = <Wrapping<i8> as BitAnd>::Output

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: &Wrapping<i8>) -> <Wrapping<i8> as BitAnd>::Output

Performs the & operation. Read more
1.14.0 ยท Sourceยง

impl BitAnd<&Wrapping<isize>> for &Wrapping<isize>

Sourceยง

type Output = <Wrapping<isize> as BitAnd>::Output

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: &Wrapping<isize>) -> <Wrapping<isize> as BitAnd>::Output

Performs the & operation. Read more
1.14.0 ยท Sourceยง

impl BitAnd<&Wrapping<isize>> for Wrapping<isize>

Sourceยง

type Output = <Wrapping<isize> as BitAnd>::Output

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: &Wrapping<isize>) -> <Wrapping<isize> as BitAnd>::Output

Performs the & operation. Read more
1.14.0 ยท Sourceยง

impl BitAnd<&Wrapping<u128>> for &Wrapping<u128>

Sourceยง

type Output = <Wrapping<u128> as BitAnd>::Output

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: &Wrapping<u128>) -> <Wrapping<u128> as BitAnd>::Output

Performs the & operation. Read more
1.14.0 ยท Sourceยง

impl BitAnd<&Wrapping<u128>> for Wrapping<u128>

Sourceยง

type Output = <Wrapping<u128> as BitAnd>::Output

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: &Wrapping<u128>) -> <Wrapping<u128> as BitAnd>::Output

Performs the & operation. Read more
1.14.0 ยท Sourceยง

impl BitAnd<&Wrapping<u16>> for &Wrapping<u16>

Sourceยง

type Output = <Wrapping<u16> as BitAnd>::Output

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: &Wrapping<u16>) -> <Wrapping<u16> as BitAnd>::Output

Performs the & operation. Read more
1.14.0 ยท Sourceยง

impl BitAnd<&Wrapping<u16>> for Wrapping<u16>

Sourceยง

type Output = <Wrapping<u16> as BitAnd>::Output

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: &Wrapping<u16>) -> <Wrapping<u16> as BitAnd>::Output

Performs the & operation. Read more
1.14.0 ยท Sourceยง

impl BitAnd<&Wrapping<u32>> for &Wrapping<u32>

Sourceยง

type Output = <Wrapping<u32> as BitAnd>::Output

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: &Wrapping<u32>) -> <Wrapping<u32> as BitAnd>::Output

Performs the & operation. Read more
1.14.0 ยท Sourceยง

impl BitAnd<&Wrapping<u32>> for Wrapping<u32>

Sourceยง

type Output = <Wrapping<u32> as BitAnd>::Output

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: &Wrapping<u32>) -> <Wrapping<u32> as BitAnd>::Output

Performs the & operation. Read more
1.14.0 ยท Sourceยง

impl BitAnd<&Wrapping<u64>> for &Wrapping<u64>

Sourceยง

type Output = <Wrapping<u64> as BitAnd>::Output

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: &Wrapping<u64>) -> <Wrapping<u64> as BitAnd>::Output

Performs the & operation. Read more
1.14.0 ยท Sourceยง

impl BitAnd<&Wrapping<u64>> for Wrapping<u64>

Sourceยง

type Output = <Wrapping<u64> as BitAnd>::Output

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: &Wrapping<u64>) -> <Wrapping<u64> as BitAnd>::Output

Performs the & operation. Read more
1.14.0 ยท Sourceยง

impl BitAnd<&Wrapping<u8>> for &Wrapping<u8>

Sourceยง

type Output = <Wrapping<u8> as BitAnd>::Output

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: &Wrapping<u8>) -> <Wrapping<u8> as BitAnd>::Output

Performs the & operation. Read more
1.14.0 ยท Sourceยง

impl BitAnd<&Wrapping<u8>> for Wrapping<u8>

Sourceยง

type Output = <Wrapping<u8> as BitAnd>::Output

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: &Wrapping<u8>) -> <Wrapping<u8> as BitAnd>::Output

Performs the & operation. Read more
1.14.0 ยท Sourceยง

impl BitAnd<&Wrapping<usize>> for &Wrapping<usize>

Sourceยง

type Output = <Wrapping<usize> as BitAnd>::Output

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: &Wrapping<usize>) -> <Wrapping<usize> as BitAnd>::Output

Performs the & operation. Read more
1.14.0 ยท Sourceยง

impl BitAnd<&Wrapping<usize>> for Wrapping<usize>

Sourceยง

type Output = <Wrapping<usize> as BitAnd>::Output

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: &Wrapping<usize>) -> <Wrapping<usize> as BitAnd>::Output

Performs the & operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<i128> as BitAnd>::Output

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: Wrapping<i128>) -> <Wrapping<i128> as BitAnd>::Output

Performs the & operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<i16> as BitAnd>::Output

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: Wrapping<i16>) -> <Wrapping<i16> as BitAnd>::Output

Performs the & operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<i32> as BitAnd>::Output

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: Wrapping<i32>) -> <Wrapping<i32> as BitAnd>::Output

Performs the & operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<i64> as BitAnd>::Output

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: Wrapping<i64>) -> <Wrapping<i64> as BitAnd>::Output

Performs the & operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<i8> as BitAnd>::Output

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: Wrapping<i8>) -> <Wrapping<i8> as BitAnd>::Output

Performs the & operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<isize> as BitAnd>::Output

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: Wrapping<isize>) -> <Wrapping<isize> as BitAnd>::Output

Performs the & operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<u128> as BitAnd>::Output

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: Wrapping<u128>) -> <Wrapping<u128> as BitAnd>::Output

Performs the & operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<u16> as BitAnd>::Output

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: Wrapping<u16>) -> <Wrapping<u16> as BitAnd>::Output

Performs the & operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<u32> as BitAnd>::Output

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: Wrapping<u32>) -> <Wrapping<u32> as BitAnd>::Output

Performs the & operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<u64> as BitAnd>::Output

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: Wrapping<u64>) -> <Wrapping<u64> as BitAnd>::Output

Performs the & operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<u8> as BitAnd>::Output

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: Wrapping<u8>) -> <Wrapping<u8> as BitAnd>::Output

Performs the & operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<usize> as BitAnd>::Output

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: Wrapping<usize>) -> <Wrapping<usize> as BitAnd>::Output

Performs the & operation. Read more
1.0.0 ยท Sourceยง

impl BitAnd for Wrapping<i128>

Sourceยง

type Output = Wrapping<i128>

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: Wrapping<i128>) -> Wrapping<i128>

Performs the & operation. Read more
1.0.0 ยท Sourceยง

impl BitAnd for Wrapping<i16>

Sourceยง

type Output = Wrapping<i16>

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: Wrapping<i16>) -> Wrapping<i16>

Performs the & operation. Read more
1.0.0 ยท Sourceยง

impl BitAnd for Wrapping<i32>

Sourceยง

type Output = Wrapping<i32>

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: Wrapping<i32>) -> Wrapping<i32>

Performs the & operation. Read more
1.0.0 ยท Sourceยง

impl BitAnd for Wrapping<i64>

Sourceยง

type Output = Wrapping<i64>

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: Wrapping<i64>) -> Wrapping<i64>

Performs the & operation. Read more
1.0.0 ยท Sourceยง

impl BitAnd for Wrapping<i8>

Sourceยง

type Output = Wrapping<i8>

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: Wrapping<i8>) -> Wrapping<i8>

Performs the & operation. Read more
1.0.0 ยท Sourceยง

impl BitAnd for Wrapping<isize>

Sourceยง

type Output = Wrapping<isize>

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: Wrapping<isize>) -> Wrapping<isize>

Performs the & operation. Read more
1.0.0 ยท Sourceยง

impl BitAnd for Wrapping<u128>

Sourceยง

type Output = Wrapping<u128>

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: Wrapping<u128>) -> Wrapping<u128>

Performs the & operation. Read more
1.0.0 ยท Sourceยง

impl BitAnd for Wrapping<u16>

Sourceยง

type Output = Wrapping<u16>

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: Wrapping<u16>) -> Wrapping<u16>

Performs the & operation. Read more
1.0.0 ยท Sourceยง

impl BitAnd for Wrapping<u32>

Sourceยง

type Output = Wrapping<u32>

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: Wrapping<u32>) -> Wrapping<u32>

Performs the & operation. Read more
1.0.0 ยท Sourceยง

impl BitAnd for Wrapping<u64>

Sourceยง

type Output = Wrapping<u64>

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: Wrapping<u64>) -> Wrapping<u64>

Performs the & operation. Read more
1.0.0 ยท Sourceยง

impl BitAnd for Wrapping<u8>

Sourceยง

type Output = Wrapping<u8>

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: Wrapping<u8>) -> Wrapping<u8>

Performs the & operation. Read more
1.0.0 ยท Sourceยง

impl BitAnd for Wrapping<usize>

Sourceยง

type Output = Wrapping<usize>

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, other: Wrapping<usize>) -> Wrapping<usize>

Performs the & operation. Read more
1.22.0 ยท Sourceยง

impl BitAndAssign<&Wrapping<i128>> for Wrapping<i128>

Sourceยง

fn bitand_assign(&mut self, other: &Wrapping<i128>)

Performs the &= operation. Read more
1.22.0 ยท Sourceยง

impl BitAndAssign<&Wrapping<i16>> for Wrapping<i16>

Sourceยง

fn bitand_assign(&mut self, other: &Wrapping<i16>)

Performs the &= operation. Read more
1.22.0 ยท Sourceยง

impl BitAndAssign<&Wrapping<i32>> for Wrapping<i32>

Sourceยง

fn bitand_assign(&mut self, other: &Wrapping<i32>)

Performs the &= operation. Read more
1.22.0 ยท Sourceยง

impl BitAndAssign<&Wrapping<i64>> for Wrapping<i64>

Sourceยง

fn bitand_assign(&mut self, other: &Wrapping<i64>)

Performs the &= operation. Read more
1.22.0 ยท Sourceยง

impl BitAndAssign<&Wrapping<i8>> for Wrapping<i8>

Sourceยง

fn bitand_assign(&mut self, other: &Wrapping<i8>)

Performs the &= operation. Read more
1.22.0 ยท Sourceยง

impl BitAndAssign<&Wrapping<isize>> for Wrapping<isize>

Sourceยง

fn bitand_assign(&mut self, other: &Wrapping<isize>)

Performs the &= operation. Read more
1.22.0 ยท Sourceยง

impl BitAndAssign<&Wrapping<u128>> for Wrapping<u128>

Sourceยง

fn bitand_assign(&mut self, other: &Wrapping<u128>)

Performs the &= operation. Read more
1.22.0 ยท Sourceยง

impl BitAndAssign<&Wrapping<u16>> for Wrapping<u16>

Sourceยง

fn bitand_assign(&mut self, other: &Wrapping<u16>)

Performs the &= operation. Read more
1.22.0 ยท Sourceยง

impl BitAndAssign<&Wrapping<u32>> for Wrapping<u32>

Sourceยง

fn bitand_assign(&mut self, other: &Wrapping<u32>)

Performs the &= operation. Read more
1.22.0 ยท Sourceยง

impl BitAndAssign<&Wrapping<u64>> for Wrapping<u64>

Sourceยง

fn bitand_assign(&mut self, other: &Wrapping<u64>)

Performs the &= operation. Read more
1.22.0 ยท Sourceยง

impl BitAndAssign<&Wrapping<u8>> for Wrapping<u8>

Sourceยง

fn bitand_assign(&mut self, other: &Wrapping<u8>)

Performs the &= operation. Read more
1.22.0 ยท Sourceยง

impl BitAndAssign<&Wrapping<usize>> for Wrapping<usize>

Sourceยง

fn bitand_assign(&mut self, other: &Wrapping<usize>)

Performs the &= operation. Read more
1.22.0 ยท Sourceยง

impl BitAndAssign<&i128> for Wrapping<i128>

Sourceยง

fn bitand_assign(&mut self, other: &i128)

Performs the &= operation. Read more
1.22.0 ยท Sourceยง

impl BitAndAssign<&i16> for Wrapping<i16>

Sourceยง

fn bitand_assign(&mut self, other: &i16)

Performs the &= operation. Read more
1.22.0 ยท Sourceยง

impl BitAndAssign<&i32> for Wrapping<i32>

Sourceยง

fn bitand_assign(&mut self, other: &i32)

Performs the &= operation. Read more
1.22.0 ยท Sourceยง

impl BitAndAssign<&i64> for Wrapping<i64>

Sourceยง

fn bitand_assign(&mut self, other: &i64)

Performs the &= operation. Read more
1.22.0 ยท Sourceยง

impl BitAndAssign<&i8> for Wrapping<i8>

Sourceยง

fn bitand_assign(&mut self, other: &i8)

Performs the &= operation. Read more
1.22.0 ยท Sourceยง

impl BitAndAssign<&isize> for Wrapping<isize>

Sourceยง

fn bitand_assign(&mut self, other: &isize)

Performs the &= operation. Read more
1.22.0 ยท Sourceยง

impl BitAndAssign<&u128> for Wrapping<u128>

Sourceยง

fn bitand_assign(&mut self, other: &u128)

Performs the &= operation. Read more
1.22.0 ยท Sourceยง

impl BitAndAssign<&u16> for Wrapping<u16>

Sourceยง

fn bitand_assign(&mut self, other: &u16)

Performs the &= operation. Read more
1.22.0 ยท Sourceยง

impl BitAndAssign<&u32> for Wrapping<u32>

Sourceยง

fn bitand_assign(&mut self, other: &u32)

Performs the &= operation. Read more
1.22.0 ยท Sourceยง

impl BitAndAssign<&u64> for Wrapping<u64>

Sourceยง

fn bitand_assign(&mut self, other: &u64)

Performs the &= operation. Read more
1.22.0 ยท Sourceยง

impl BitAndAssign<&u8> for Wrapping<u8>

Sourceยง

fn bitand_assign(&mut self, other: &u8)

Performs the &= operation. Read more
1.22.0 ยท Sourceยง

impl BitAndAssign<&usize> for Wrapping<usize>

Sourceยง

fn bitand_assign(&mut self, other: &usize)

Performs the &= operation. Read more
1.60.0 ยท Sourceยง

impl BitAndAssign<i128> for Wrapping<i128>

Sourceยง

fn bitand_assign(&mut self, other: i128)

Performs the &= operation. Read more
1.60.0 ยท Sourceยง

impl BitAndAssign<i16> for Wrapping<i16>

Sourceยง

fn bitand_assign(&mut self, other: i16)

Performs the &= operation. Read more
1.60.0 ยท Sourceยง

impl BitAndAssign<i32> for Wrapping<i32>

Sourceยง

fn bitand_assign(&mut self, other: i32)

Performs the &= operation. Read more
1.60.0 ยท Sourceยง

impl BitAndAssign<i64> for Wrapping<i64>

Sourceยง

fn bitand_assign(&mut self, other: i64)

Performs the &= operation. Read more
1.60.0 ยท Sourceยง

impl BitAndAssign<i8> for Wrapping<i8>

Sourceยง

fn bitand_assign(&mut self, other: i8)

Performs the &= operation. Read more
1.60.0 ยท Sourceยง

impl BitAndAssign<isize> for Wrapping<isize>

Sourceยง

fn bitand_assign(&mut self, other: isize)

Performs the &= operation. Read more
1.60.0 ยท Sourceยง

impl BitAndAssign<u128> for Wrapping<u128>

Sourceยง

fn bitand_assign(&mut self, other: u128)

Performs the &= operation. Read more
1.60.0 ยท Sourceยง

impl BitAndAssign<u16> for Wrapping<u16>

Sourceยง

fn bitand_assign(&mut self, other: u16)

Performs the &= operation. Read more
1.60.0 ยท Sourceยง

impl BitAndAssign<u32> for Wrapping<u32>

Sourceยง

fn bitand_assign(&mut self, other: u32)

Performs the &= operation. Read more
1.60.0 ยท Sourceยง

impl BitAndAssign<u64> for Wrapping<u64>

Sourceยง

fn bitand_assign(&mut self, other: u64)

Performs the &= operation. Read more
1.60.0 ยท Sourceยง

impl BitAndAssign<u8> for Wrapping<u8>

Sourceยง

fn bitand_assign(&mut self, other: u8)

Performs the &= operation. Read more
1.60.0 ยท Sourceยง

impl BitAndAssign<usize> for Wrapping<usize>

Sourceยง

fn bitand_assign(&mut self, other: usize)

Performs the &= operation. Read more
1.8.0 ยท Sourceยง

impl BitAndAssign for Wrapping<i128>

Sourceยง

fn bitand_assign(&mut self, other: Wrapping<i128>)

Performs the &= operation. Read more
1.8.0 ยท Sourceยง

impl BitAndAssign for Wrapping<i16>

Sourceยง

fn bitand_assign(&mut self, other: Wrapping<i16>)

Performs the &= operation. Read more
1.8.0 ยท Sourceยง

impl BitAndAssign for Wrapping<i32>

Sourceยง

fn bitand_assign(&mut self, other: Wrapping<i32>)

Performs the &= operation. Read more
1.8.0 ยท Sourceยง

impl BitAndAssign for Wrapping<i64>

Sourceยง

fn bitand_assign(&mut self, other: Wrapping<i64>)

Performs the &= operation. Read more
1.8.0 ยท Sourceยง

impl BitAndAssign for Wrapping<i8>

Sourceยง

fn bitand_assign(&mut self, other: Wrapping<i8>)

Performs the &= operation. Read more
1.8.0 ยท Sourceยง

impl BitAndAssign for Wrapping<isize>

Sourceยง

fn bitand_assign(&mut self, other: Wrapping<isize>)

Performs the &= operation. Read more
1.8.0 ยท Sourceยง

impl BitAndAssign for Wrapping<u128>

Sourceยง

fn bitand_assign(&mut self, other: Wrapping<u128>)

Performs the &= operation. Read more
1.8.0 ยท Sourceยง

impl BitAndAssign for Wrapping<u16>

Sourceยง

fn bitand_assign(&mut self, other: Wrapping<u16>)

Performs the &= operation. Read more
1.8.0 ยท Sourceยง

impl BitAndAssign for Wrapping<u32>

Sourceยง

fn bitand_assign(&mut self, other: Wrapping<u32>)

Performs the &= operation. Read more
1.8.0 ยท Sourceยง

impl BitAndAssign for Wrapping<u64>

Sourceยง

fn bitand_assign(&mut self, other: Wrapping<u64>)

Performs the &= operation. Read more
1.8.0 ยท Sourceยง

impl BitAndAssign for Wrapping<u8>

Sourceยง

fn bitand_assign(&mut self, other: Wrapping<u8>)

Performs the &= operation. Read more
1.8.0 ยท Sourceยง

impl BitAndAssign for Wrapping<usize>

Sourceยง

fn bitand_assign(&mut self, other: Wrapping<usize>)

Performs the &= operation. Read more
1.14.0 ยท Sourceยง

impl BitOr<&Wrapping<i128>> for &Wrapping<i128>

Sourceยง

type Output = <Wrapping<i128> as BitOr>::Output

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: &Wrapping<i128>) -> <Wrapping<i128> as BitOr>::Output

Performs the | operation. Read more
1.14.0 ยท Sourceยง

impl BitOr<&Wrapping<i128>> for Wrapping<i128>

Sourceยง

type Output = <Wrapping<i128> as BitOr>::Output

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: &Wrapping<i128>) -> <Wrapping<i128> as BitOr>::Output

Performs the | operation. Read more
1.14.0 ยท Sourceยง

impl BitOr<&Wrapping<i16>> for &Wrapping<i16>

Sourceยง

type Output = <Wrapping<i16> as BitOr>::Output

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: &Wrapping<i16>) -> <Wrapping<i16> as BitOr>::Output

Performs the | operation. Read more
1.14.0 ยท Sourceยง

impl BitOr<&Wrapping<i16>> for Wrapping<i16>

Sourceยง

type Output = <Wrapping<i16> as BitOr>::Output

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: &Wrapping<i16>) -> <Wrapping<i16> as BitOr>::Output

Performs the | operation. Read more
1.14.0 ยท Sourceยง

impl BitOr<&Wrapping<i32>> for &Wrapping<i32>

Sourceยง

type Output = <Wrapping<i32> as BitOr>::Output

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: &Wrapping<i32>) -> <Wrapping<i32> as BitOr>::Output

Performs the | operation. Read more
1.14.0 ยท Sourceยง

impl BitOr<&Wrapping<i32>> for Wrapping<i32>

Sourceยง

type Output = <Wrapping<i32> as BitOr>::Output

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: &Wrapping<i32>) -> <Wrapping<i32> as BitOr>::Output

Performs the | operation. Read more
1.14.0 ยท Sourceยง

impl BitOr<&Wrapping<i64>> for &Wrapping<i64>

Sourceยง

type Output = <Wrapping<i64> as BitOr>::Output

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: &Wrapping<i64>) -> <Wrapping<i64> as BitOr>::Output

Performs the | operation. Read more
1.14.0 ยท Sourceยง

impl BitOr<&Wrapping<i64>> for Wrapping<i64>

Sourceยง

type Output = <Wrapping<i64> as BitOr>::Output

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: &Wrapping<i64>) -> <Wrapping<i64> as BitOr>::Output

Performs the | operation. Read more
1.14.0 ยท Sourceยง

impl BitOr<&Wrapping<i8>> for &Wrapping<i8>

Sourceยง

type Output = <Wrapping<i8> as BitOr>::Output

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: &Wrapping<i8>) -> <Wrapping<i8> as BitOr>::Output

Performs the | operation. Read more
1.14.0 ยท Sourceยง

impl BitOr<&Wrapping<i8>> for Wrapping<i8>

Sourceยง

type Output = <Wrapping<i8> as BitOr>::Output

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: &Wrapping<i8>) -> <Wrapping<i8> as BitOr>::Output

Performs the | operation. Read more
1.14.0 ยท Sourceยง

impl BitOr<&Wrapping<isize>> for &Wrapping<isize>

Sourceยง

type Output = <Wrapping<isize> as BitOr>::Output

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: &Wrapping<isize>) -> <Wrapping<isize> as BitOr>::Output

Performs the | operation. Read more
1.14.0 ยท Sourceยง

impl BitOr<&Wrapping<isize>> for Wrapping<isize>

Sourceยง

type Output = <Wrapping<isize> as BitOr>::Output

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: &Wrapping<isize>) -> <Wrapping<isize> as BitOr>::Output

Performs the | operation. Read more
1.14.0 ยท Sourceยง

impl BitOr<&Wrapping<u128>> for &Wrapping<u128>

Sourceยง

type Output = <Wrapping<u128> as BitOr>::Output

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: &Wrapping<u128>) -> <Wrapping<u128> as BitOr>::Output

Performs the | operation. Read more
1.14.0 ยท Sourceยง

impl BitOr<&Wrapping<u128>> for Wrapping<u128>

Sourceยง

type Output = <Wrapping<u128> as BitOr>::Output

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: &Wrapping<u128>) -> <Wrapping<u128> as BitOr>::Output

Performs the | operation. Read more
1.14.0 ยท Sourceยง

impl BitOr<&Wrapping<u16>> for &Wrapping<u16>

Sourceยง

type Output = <Wrapping<u16> as BitOr>::Output

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: &Wrapping<u16>) -> <Wrapping<u16> as BitOr>::Output

Performs the | operation. Read more
1.14.0 ยท Sourceยง

impl BitOr<&Wrapping<u16>> for Wrapping<u16>

Sourceยง

type Output = <Wrapping<u16> as BitOr>::Output

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: &Wrapping<u16>) -> <Wrapping<u16> as BitOr>::Output

Performs the | operation. Read more
1.14.0 ยท Sourceยง

impl BitOr<&Wrapping<u32>> for &Wrapping<u32>

Sourceยง

type Output = <Wrapping<u32> as BitOr>::Output

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: &Wrapping<u32>) -> <Wrapping<u32> as BitOr>::Output

Performs the | operation. Read more
1.14.0 ยท Sourceยง

impl BitOr<&Wrapping<u32>> for Wrapping<u32>

Sourceยง

type Output = <Wrapping<u32> as BitOr>::Output

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: &Wrapping<u32>) -> <Wrapping<u32> as BitOr>::Output

Performs the | operation. Read more
1.14.0 ยท Sourceยง

impl BitOr<&Wrapping<u64>> for &Wrapping<u64>

Sourceยง

type Output = <Wrapping<u64> as BitOr>::Output

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: &Wrapping<u64>) -> <Wrapping<u64> as BitOr>::Output

Performs the | operation. Read more
1.14.0 ยท Sourceยง

impl BitOr<&Wrapping<u64>> for Wrapping<u64>

Sourceยง

type Output = <Wrapping<u64> as BitOr>::Output

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: &Wrapping<u64>) -> <Wrapping<u64> as BitOr>::Output

Performs the | operation. Read more
1.14.0 ยท Sourceยง

impl BitOr<&Wrapping<u8>> for &Wrapping<u8>

Sourceยง

type Output = <Wrapping<u8> as BitOr>::Output

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: &Wrapping<u8>) -> <Wrapping<u8> as BitOr>::Output

Performs the | operation. Read more
1.14.0 ยท Sourceยง

impl BitOr<&Wrapping<u8>> for Wrapping<u8>

Sourceยง

type Output = <Wrapping<u8> as BitOr>::Output

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: &Wrapping<u8>) -> <Wrapping<u8> as BitOr>::Output

Performs the | operation. Read more
1.14.0 ยท Sourceยง

impl BitOr<&Wrapping<usize>> for &Wrapping<usize>

Sourceยง

type Output = <Wrapping<usize> as BitOr>::Output

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: &Wrapping<usize>) -> <Wrapping<usize> as BitOr>::Output

Performs the | operation. Read more
1.14.0 ยท Sourceยง

impl BitOr<&Wrapping<usize>> for Wrapping<usize>

Sourceยง

type Output = <Wrapping<usize> as BitOr>::Output

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: &Wrapping<usize>) -> <Wrapping<usize> as BitOr>::Output

Performs the | operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<i128> as BitOr>::Output

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: Wrapping<i128>) -> <Wrapping<i128> as BitOr>::Output

Performs the | operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<i16> as BitOr>::Output

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: Wrapping<i16>) -> <Wrapping<i16> as BitOr>::Output

Performs the | operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<i32> as BitOr>::Output

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: Wrapping<i32>) -> <Wrapping<i32> as BitOr>::Output

Performs the | operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<i64> as BitOr>::Output

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: Wrapping<i64>) -> <Wrapping<i64> as BitOr>::Output

Performs the | operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<i8> as BitOr>::Output

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: Wrapping<i8>) -> <Wrapping<i8> as BitOr>::Output

Performs the | operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<isize> as BitOr>::Output

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: Wrapping<isize>) -> <Wrapping<isize> as BitOr>::Output

Performs the | operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<u128> as BitOr>::Output

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: Wrapping<u128>) -> <Wrapping<u128> as BitOr>::Output

Performs the | operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<u16> as BitOr>::Output

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: Wrapping<u16>) -> <Wrapping<u16> as BitOr>::Output

Performs the | operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<u32> as BitOr>::Output

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: Wrapping<u32>) -> <Wrapping<u32> as BitOr>::Output

Performs the | operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<u64> as BitOr>::Output

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: Wrapping<u64>) -> <Wrapping<u64> as BitOr>::Output

Performs the | operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<u8> as BitOr>::Output

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: Wrapping<u8>) -> <Wrapping<u8> as BitOr>::Output

Performs the | operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<usize> as BitOr>::Output

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: Wrapping<usize>) -> <Wrapping<usize> as BitOr>::Output

Performs the | operation. Read more
1.0.0 ยท Sourceยง

impl BitOr for Wrapping<i128>

Sourceยง

type Output = Wrapping<i128>

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: Wrapping<i128>) -> Wrapping<i128>

Performs the | operation. Read more
1.0.0 ยท Sourceยง

impl BitOr for Wrapping<i16>

Sourceยง

type Output = Wrapping<i16>

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: Wrapping<i16>) -> Wrapping<i16>

Performs the | operation. Read more
1.0.0 ยท Sourceยง

impl BitOr for Wrapping<i32>

Sourceยง

type Output = Wrapping<i32>

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: Wrapping<i32>) -> Wrapping<i32>

Performs the | operation. Read more
1.0.0 ยท Sourceยง

impl BitOr for Wrapping<i64>

Sourceยง

type Output = Wrapping<i64>

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: Wrapping<i64>) -> Wrapping<i64>

Performs the | operation. Read more
1.0.0 ยท Sourceยง

impl BitOr for Wrapping<i8>

Sourceยง

type Output = Wrapping<i8>

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: Wrapping<i8>) -> Wrapping<i8>

Performs the | operation. Read more
1.0.0 ยท Sourceยง

impl BitOr for Wrapping<isize>

Sourceยง

type Output = Wrapping<isize>

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: Wrapping<isize>) -> Wrapping<isize>

Performs the | operation. Read more
1.0.0 ยท Sourceยง

impl BitOr for Wrapping<u128>

Sourceยง

type Output = Wrapping<u128>

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: Wrapping<u128>) -> Wrapping<u128>

Performs the | operation. Read more
1.0.0 ยท Sourceยง

impl BitOr for Wrapping<u16>

Sourceยง

type Output = Wrapping<u16>

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: Wrapping<u16>) -> Wrapping<u16>

Performs the | operation. Read more
1.0.0 ยท Sourceยง

impl BitOr for Wrapping<u32>

Sourceยง

type Output = Wrapping<u32>

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: Wrapping<u32>) -> Wrapping<u32>

Performs the | operation. Read more
1.0.0 ยท Sourceยง

impl BitOr for Wrapping<u64>

Sourceยง

type Output = Wrapping<u64>

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: Wrapping<u64>) -> Wrapping<u64>

Performs the | operation. Read more
1.0.0 ยท Sourceยง

impl BitOr for Wrapping<u8>

Sourceยง

type Output = Wrapping<u8>

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: Wrapping<u8>) -> Wrapping<u8>

Performs the | operation. Read more
1.0.0 ยท Sourceยง

impl BitOr for Wrapping<usize>

Sourceยง

type Output = Wrapping<usize>

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, other: Wrapping<usize>) -> Wrapping<usize>

Performs the | operation. Read more
1.22.0 ยท Sourceยง

impl BitOrAssign<&Wrapping<i128>> for Wrapping<i128>

Sourceยง

fn bitor_assign(&mut self, other: &Wrapping<i128>)

Performs the |= operation. Read more
1.22.0 ยท Sourceยง

impl BitOrAssign<&Wrapping<i16>> for Wrapping<i16>

Sourceยง

fn bitor_assign(&mut self, other: &Wrapping<i16>)

Performs the |= operation. Read more
1.22.0 ยท Sourceยง

impl BitOrAssign<&Wrapping<i32>> for Wrapping<i32>

Sourceยง

fn bitor_assign(&mut self, other: &Wrapping<i32>)

Performs the |= operation. Read more
1.22.0 ยท Sourceยง

impl BitOrAssign<&Wrapping<i64>> for Wrapping<i64>

Sourceยง

fn bitor_assign(&mut self, other: &Wrapping<i64>)

Performs the |= operation. Read more
1.22.0 ยท Sourceยง

impl BitOrAssign<&Wrapping<i8>> for Wrapping<i8>

Sourceยง

fn bitor_assign(&mut self, other: &Wrapping<i8>)

Performs the |= operation. Read more
1.22.0 ยท Sourceยง

impl BitOrAssign<&Wrapping<isize>> for Wrapping<isize>

Sourceยง

fn bitor_assign(&mut self, other: &Wrapping<isize>)

Performs the |= operation. Read more
1.22.0 ยท Sourceยง

impl BitOrAssign<&Wrapping<u128>> for Wrapping<u128>

Sourceยง

fn bitor_assign(&mut self, other: &Wrapping<u128>)

Performs the |= operation. Read more
1.22.0 ยท Sourceยง

impl BitOrAssign<&Wrapping<u16>> for Wrapping<u16>

Sourceยง

fn bitor_assign(&mut self, other: &Wrapping<u16>)

Performs the |= operation. Read more
1.22.0 ยท Sourceยง

impl BitOrAssign<&Wrapping<u32>> for Wrapping<u32>

Sourceยง

fn bitor_assign(&mut self, other: &Wrapping<u32>)

Performs the |= operation. Read more
1.22.0 ยท Sourceยง

impl BitOrAssign<&Wrapping<u64>> for Wrapping<u64>

Sourceยง

fn bitor_assign(&mut self, other: &Wrapping<u64>)

Performs the |= operation. Read more
1.22.0 ยท Sourceยง

impl BitOrAssign<&Wrapping<u8>> for Wrapping<u8>

Sourceยง

fn bitor_assign(&mut self, other: &Wrapping<u8>)

Performs the |= operation. Read more
1.22.0 ยท Sourceยง

impl BitOrAssign<&Wrapping<usize>> for Wrapping<usize>

Sourceยง

fn bitor_assign(&mut self, other: &Wrapping<usize>)

Performs the |= operation. Read more
1.22.0 ยท Sourceยง

impl BitOrAssign<&i128> for Wrapping<i128>

Sourceยง

fn bitor_assign(&mut self, other: &i128)

Performs the |= operation. Read more
1.22.0 ยท Sourceยง

impl BitOrAssign<&i16> for Wrapping<i16>

Sourceยง

fn bitor_assign(&mut self, other: &i16)

Performs the |= operation. Read more
1.22.0 ยท Sourceยง

impl BitOrAssign<&i32> for Wrapping<i32>

Sourceยง

fn bitor_assign(&mut self, other: &i32)

Performs the |= operation. Read more
1.22.0 ยท Sourceยง

impl BitOrAssign<&i64> for Wrapping<i64>

Sourceยง

fn bitor_assign(&mut self, other: &i64)

Performs the |= operation. Read more
1.22.0 ยท Sourceยง

impl BitOrAssign<&i8> for Wrapping<i8>

Sourceยง

fn bitor_assign(&mut self, other: &i8)

Performs the |= operation. Read more
1.22.0 ยท Sourceยง

impl BitOrAssign<&isize> for Wrapping<isize>

Sourceยง

fn bitor_assign(&mut self, other: &isize)

Performs the |= operation. Read more
1.22.0 ยท Sourceยง

impl BitOrAssign<&u128> for Wrapping<u128>

Sourceยง

fn bitor_assign(&mut self, other: &u128)

Performs the |= operation. Read more
1.22.0 ยท Sourceยง

impl BitOrAssign<&u16> for Wrapping<u16>

Sourceยง

fn bitor_assign(&mut self, other: &u16)

Performs the |= operation. Read more
1.22.0 ยท Sourceยง

impl BitOrAssign<&u32> for Wrapping<u32>

Sourceยง

fn bitor_assign(&mut self, other: &u32)

Performs the |= operation. Read more
1.22.0 ยท Sourceยง

impl BitOrAssign<&u64> for Wrapping<u64>

Sourceยง

fn bitor_assign(&mut self, other: &u64)

Performs the |= operation. Read more
1.22.0 ยท Sourceยง

impl BitOrAssign<&u8> for Wrapping<u8>

Sourceยง

fn bitor_assign(&mut self, other: &u8)

Performs the |= operation. Read more
1.22.0 ยท Sourceยง

impl BitOrAssign<&usize> for Wrapping<usize>

Sourceยง

fn bitor_assign(&mut self, other: &usize)

Performs the |= operation. Read more
1.60.0 ยท Sourceยง

impl BitOrAssign<i128> for Wrapping<i128>

Sourceยง

fn bitor_assign(&mut self, other: i128)

Performs the |= operation. Read more
1.60.0 ยท Sourceยง

impl BitOrAssign<i16> for Wrapping<i16>

Sourceยง

fn bitor_assign(&mut self, other: i16)

Performs the |= operation. Read more
1.60.0 ยท Sourceยง

impl BitOrAssign<i32> for Wrapping<i32>

Sourceยง

fn bitor_assign(&mut self, other: i32)

Performs the |= operation. Read more
1.60.0 ยท Sourceยง

impl BitOrAssign<i64> for Wrapping<i64>

Sourceยง

fn bitor_assign(&mut self, other: i64)

Performs the |= operation. Read more
1.60.0 ยท Sourceยง

impl BitOrAssign<i8> for Wrapping<i8>

Sourceยง

fn bitor_assign(&mut self, other: i8)

Performs the |= operation. Read more
1.60.0 ยท Sourceยง

impl BitOrAssign<isize> for Wrapping<isize>

Sourceยง

fn bitor_assign(&mut self, other: isize)

Performs the |= operation. Read more
1.60.0 ยท Sourceยง

impl BitOrAssign<u128> for Wrapping<u128>

Sourceยง

fn bitor_assign(&mut self, other: u128)

Performs the |= operation. Read more
1.60.0 ยท Sourceยง

impl BitOrAssign<u16> for Wrapping<u16>

Sourceยง

fn bitor_assign(&mut self, other: u16)

Performs the |= operation. Read more
1.60.0 ยท Sourceยง

impl BitOrAssign<u32> for Wrapping<u32>

Sourceยง

fn bitor_assign(&mut self, other: u32)

Performs the |= operation. Read more
1.60.0 ยท Sourceยง

impl BitOrAssign<u64> for Wrapping<u64>

Sourceยง

fn bitor_assign(&mut self, other: u64)

Performs the |= operation. Read more
1.60.0 ยท Sourceยง

impl BitOrAssign<u8> for Wrapping<u8>

Sourceยง

fn bitor_assign(&mut self, other: u8)

Performs the |= operation. Read more
1.60.0 ยท Sourceยง

impl BitOrAssign<usize> for Wrapping<usize>

Sourceยง

fn bitor_assign(&mut self, other: usize)

Performs the |= operation. Read more
1.8.0 ยท Sourceยง

impl BitOrAssign for Wrapping<i128>

Sourceยง

fn bitor_assign(&mut self, other: Wrapping<i128>)

Performs the |= operation. Read more
1.8.0 ยท Sourceยง

impl BitOrAssign for Wrapping<i16>

Sourceยง

fn bitor_assign(&mut self, other: Wrapping<i16>)

Performs the |= operation. Read more
1.8.0 ยท Sourceยง

impl BitOrAssign for Wrapping<i32>

Sourceยง

fn bitor_assign(&mut self, other: Wrapping<i32>)

Performs the |= operation. Read more
1.8.0 ยท Sourceยง

impl BitOrAssign for Wrapping<i64>

Sourceยง

fn bitor_assign(&mut self, other: Wrapping<i64>)

Performs the |= operation. Read more
1.8.0 ยท Sourceยง

impl BitOrAssign for Wrapping<i8>

Sourceยง

fn bitor_assign(&mut self, other: Wrapping<i8>)

Performs the |= operation. Read more
1.8.0 ยท Sourceยง

impl BitOrAssign for Wrapping<isize>

Sourceยง

fn bitor_assign(&mut self, other: Wrapping<isize>)

Performs the |= operation. Read more
1.8.0 ยท Sourceยง

impl BitOrAssign for Wrapping<u128>

Sourceยง

fn bitor_assign(&mut self, other: Wrapping<u128>)

Performs the |= operation. Read more
1.8.0 ยท Sourceยง

impl BitOrAssign for Wrapping<u16>

Sourceยง

fn bitor_assign(&mut self, other: Wrapping<u16>)

Performs the |= operation. Read more
1.8.0 ยท Sourceยง

impl BitOrAssign for Wrapping<u32>

Sourceยง

fn bitor_assign(&mut self, other: Wrapping<u32>)

Performs the |= operation. Read more
1.8.0 ยท Sourceยง

impl BitOrAssign for Wrapping<u64>

Sourceยง

fn bitor_assign(&mut self, other: Wrapping<u64>)

Performs the |= operation. Read more
1.8.0 ยท Sourceยง

impl BitOrAssign for Wrapping<u8>

Sourceยง

fn bitor_assign(&mut self, other: Wrapping<u8>)

Performs the |= operation. Read more
1.8.0 ยท Sourceยง

impl BitOrAssign for Wrapping<usize>

Sourceยง

fn bitor_assign(&mut self, other: Wrapping<usize>)

Performs the |= operation. Read more
1.14.0 ยท Sourceยง

impl BitXor<&Wrapping<i128>> for &Wrapping<i128>

Sourceยง

type Output = <Wrapping<i128> as BitXor>::Output

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: &Wrapping<i128>) -> <Wrapping<i128> as BitXor>::Output

Performs the ^ operation. Read more
1.14.0 ยท Sourceยง

impl BitXor<&Wrapping<i128>> for Wrapping<i128>

Sourceยง

type Output = <Wrapping<i128> as BitXor>::Output

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: &Wrapping<i128>) -> <Wrapping<i128> as BitXor>::Output

Performs the ^ operation. Read more
1.14.0 ยท Sourceยง

impl BitXor<&Wrapping<i16>> for &Wrapping<i16>

Sourceยง

type Output = <Wrapping<i16> as BitXor>::Output

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: &Wrapping<i16>) -> <Wrapping<i16> as BitXor>::Output

Performs the ^ operation. Read more
1.14.0 ยท Sourceยง

impl BitXor<&Wrapping<i16>> for Wrapping<i16>

Sourceยง

type Output = <Wrapping<i16> as BitXor>::Output

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: &Wrapping<i16>) -> <Wrapping<i16> as BitXor>::Output

Performs the ^ operation. Read more
1.14.0 ยท Sourceยง

impl BitXor<&Wrapping<i32>> for &Wrapping<i32>

Sourceยง

type Output = <Wrapping<i32> as BitXor>::Output

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: &Wrapping<i32>) -> <Wrapping<i32> as BitXor>::Output

Performs the ^ operation. Read more
1.14.0 ยท Sourceยง

impl BitXor<&Wrapping<i32>> for Wrapping<i32>

Sourceยง

type Output = <Wrapping<i32> as BitXor>::Output

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: &Wrapping<i32>) -> <Wrapping<i32> as BitXor>::Output

Performs the ^ operation. Read more
1.14.0 ยท Sourceยง

impl BitXor<&Wrapping<i64>> for &Wrapping<i64>

Sourceยง

type Output = <Wrapping<i64> as BitXor>::Output

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: &Wrapping<i64>) -> <Wrapping<i64> as BitXor>::Output

Performs the ^ operation. Read more
1.14.0 ยท Sourceยง

impl BitXor<&Wrapping<i64>> for Wrapping<i64>

Sourceยง

type Output = <Wrapping<i64> as BitXor>::Output

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: &Wrapping<i64>) -> <Wrapping<i64> as BitXor>::Output

Performs the ^ operation. Read more
1.14.0 ยท Sourceยง

impl BitXor<&Wrapping<i8>> for &Wrapping<i8>

Sourceยง

type Output = <Wrapping<i8> as BitXor>::Output

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: &Wrapping<i8>) -> <Wrapping<i8> as BitXor>::Output

Performs the ^ operation. Read more
1.14.0 ยท Sourceยง

impl BitXor<&Wrapping<i8>> for Wrapping<i8>

Sourceยง

type Output = <Wrapping<i8> as BitXor>::Output

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: &Wrapping<i8>) -> <Wrapping<i8> as BitXor>::Output

Performs the ^ operation. Read more
1.14.0 ยท Sourceยง

impl BitXor<&Wrapping<isize>> for &Wrapping<isize>

Sourceยง

type Output = <Wrapping<isize> as BitXor>::Output

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: &Wrapping<isize>) -> <Wrapping<isize> as BitXor>::Output

Performs the ^ operation. Read more
1.14.0 ยท Sourceยง

impl BitXor<&Wrapping<isize>> for Wrapping<isize>

Sourceยง

type Output = <Wrapping<isize> as BitXor>::Output

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: &Wrapping<isize>) -> <Wrapping<isize> as BitXor>::Output

Performs the ^ operation. Read more
1.14.0 ยท Sourceยง

impl BitXor<&Wrapping<u128>> for &Wrapping<u128>

Sourceยง

type Output = <Wrapping<u128> as BitXor>::Output

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: &Wrapping<u128>) -> <Wrapping<u128> as BitXor>::Output

Performs the ^ operation. Read more
1.14.0 ยท Sourceยง

impl BitXor<&Wrapping<u128>> for Wrapping<u128>

Sourceยง

type Output = <Wrapping<u128> as BitXor>::Output

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: &Wrapping<u128>) -> <Wrapping<u128> as BitXor>::Output

Performs the ^ operation. Read more
1.14.0 ยท Sourceยง

impl BitXor<&Wrapping<u16>> for &Wrapping<u16>

Sourceยง

type Output = <Wrapping<u16> as BitXor>::Output

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: &Wrapping<u16>) -> <Wrapping<u16> as BitXor>::Output

Performs the ^ operation. Read more
1.14.0 ยท Sourceยง

impl BitXor<&Wrapping<u16>> for Wrapping<u16>

Sourceยง

type Output = <Wrapping<u16> as BitXor>::Output

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: &Wrapping<u16>) -> <Wrapping<u16> as BitXor>::Output

Performs the ^ operation. Read more
1.14.0 ยท Sourceยง

impl BitXor<&Wrapping<u32>> for &Wrapping<u32>

Sourceยง

type Output = <Wrapping<u32> as BitXor>::Output

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: &Wrapping<u32>) -> <Wrapping<u32> as BitXor>::Output

Performs the ^ operation. Read more
1.14.0 ยท Sourceยง

impl BitXor<&Wrapping<u32>> for Wrapping<u32>

Sourceยง

type Output = <Wrapping<u32> as BitXor>::Output

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: &Wrapping<u32>) -> <Wrapping<u32> as BitXor>::Output

Performs the ^ operation. Read more
1.14.0 ยท Sourceยง

impl BitXor<&Wrapping<u64>> for &Wrapping<u64>

Sourceยง

type Output = <Wrapping<u64> as BitXor>::Output

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: &Wrapping<u64>) -> <Wrapping<u64> as BitXor>::Output

Performs the ^ operation. Read more
1.14.0 ยท Sourceยง

impl BitXor<&Wrapping<u64>> for Wrapping<u64>

Sourceยง

type Output = <Wrapping<u64> as BitXor>::Output

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: &Wrapping<u64>) -> <Wrapping<u64> as BitXor>::Output

Performs the ^ operation. Read more
1.14.0 ยท Sourceยง

impl BitXor<&Wrapping<u8>> for &Wrapping<u8>

Sourceยง

type Output = <Wrapping<u8> as BitXor>::Output

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: &Wrapping<u8>) -> <Wrapping<u8> as BitXor>::Output

Performs the ^ operation. Read more
1.14.0 ยท Sourceยง

impl BitXor<&Wrapping<u8>> for Wrapping<u8>

Sourceยง

type Output = <Wrapping<u8> as BitXor>::Output

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: &Wrapping<u8>) -> <Wrapping<u8> as BitXor>::Output

Performs the ^ operation. Read more
1.14.0 ยท Sourceยง

impl BitXor<&Wrapping<usize>> for &Wrapping<usize>

Sourceยง

type Output = <Wrapping<usize> as BitXor>::Output

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: &Wrapping<usize>) -> <Wrapping<usize> as BitXor>::Output

Performs the ^ operation. Read more
1.14.0 ยท Sourceยง

impl BitXor<&Wrapping<usize>> for Wrapping<usize>

Sourceยง

type Output = <Wrapping<usize> as BitXor>::Output

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: &Wrapping<usize>) -> <Wrapping<usize> as BitXor>::Output

Performs the ^ operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<i128> as BitXor>::Output

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: Wrapping<i128>) -> <Wrapping<i128> as BitXor>::Output

Performs the ^ operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<i16> as BitXor>::Output

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: Wrapping<i16>) -> <Wrapping<i16> as BitXor>::Output

Performs the ^ operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<i32> as BitXor>::Output

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: Wrapping<i32>) -> <Wrapping<i32> as BitXor>::Output

Performs the ^ operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<i64> as BitXor>::Output

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: Wrapping<i64>) -> <Wrapping<i64> as BitXor>::Output

Performs the ^ operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<i8> as BitXor>::Output

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: Wrapping<i8>) -> <Wrapping<i8> as BitXor>::Output

Performs the ^ operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<isize> as BitXor>::Output

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: Wrapping<isize>) -> <Wrapping<isize> as BitXor>::Output

Performs the ^ operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<u128> as BitXor>::Output

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: Wrapping<u128>) -> <Wrapping<u128> as BitXor>::Output

Performs the ^ operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<u16> as BitXor>::Output

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: Wrapping<u16>) -> <Wrapping<u16> as BitXor>::Output

Performs the ^ operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<u32> as BitXor>::Output

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: Wrapping<u32>) -> <Wrapping<u32> as BitXor>::Output

Performs the ^ operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<u64> as BitXor>::Output

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: Wrapping<u64>) -> <Wrapping<u64> as BitXor>::Output

Performs the ^ operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<u8> as BitXor>::Output

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: Wrapping<u8>) -> <Wrapping<u8> as BitXor>::Output

Performs the ^ operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<usize> as BitXor>::Output

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: Wrapping<usize>) -> <Wrapping<usize> as BitXor>::Output

Performs the ^ operation. Read more
1.0.0 ยท Sourceยง

impl BitXor for Wrapping<i128>

Sourceยง

type Output = Wrapping<i128>

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: Wrapping<i128>) -> Wrapping<i128>

Performs the ^ operation. Read more
1.0.0 ยท Sourceยง

impl BitXor for Wrapping<i16>

Sourceยง

type Output = Wrapping<i16>

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: Wrapping<i16>) -> Wrapping<i16>

Performs the ^ operation. Read more
1.0.0 ยท Sourceยง

impl BitXor for Wrapping<i32>

Sourceยง

type Output = Wrapping<i32>

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: Wrapping<i32>) -> Wrapping<i32>

Performs the ^ operation. Read more
1.0.0 ยท Sourceยง

impl BitXor for Wrapping<i64>

Sourceยง

type Output = Wrapping<i64>

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: Wrapping<i64>) -> Wrapping<i64>

Performs the ^ operation. Read more
1.0.0 ยท Sourceยง

impl BitXor for Wrapping<i8>

Sourceยง

type Output = Wrapping<i8>

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: Wrapping<i8>) -> Wrapping<i8>

Performs the ^ operation. Read more
1.0.0 ยท Sourceยง

impl BitXor for Wrapping<isize>

Sourceยง

type Output = Wrapping<isize>

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: Wrapping<isize>) -> Wrapping<isize>

Performs the ^ operation. Read more
1.0.0 ยท Sourceยง

impl BitXor for Wrapping<u128>

Sourceยง

type Output = Wrapping<u128>

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: Wrapping<u128>) -> Wrapping<u128>

Performs the ^ operation. Read more
1.0.0 ยท Sourceยง

impl BitXor for Wrapping<u16>

Sourceยง

type Output = Wrapping<u16>

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: Wrapping<u16>) -> Wrapping<u16>

Performs the ^ operation. Read more
1.0.0 ยท Sourceยง

impl BitXor for Wrapping<u32>

Sourceยง

type Output = Wrapping<u32>

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: Wrapping<u32>) -> Wrapping<u32>

Performs the ^ operation. Read more
1.0.0 ยท Sourceยง

impl BitXor for Wrapping<u64>

Sourceยง

type Output = Wrapping<u64>

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: Wrapping<u64>) -> Wrapping<u64>

Performs the ^ operation. Read more
1.0.0 ยท Sourceยง

impl BitXor for Wrapping<u8>

Sourceยง

type Output = Wrapping<u8>

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: Wrapping<u8>) -> Wrapping<u8>

Performs the ^ operation. Read more
1.0.0 ยท Sourceยง

impl BitXor for Wrapping<usize>

Sourceยง

type Output = Wrapping<usize>

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, other: Wrapping<usize>) -> Wrapping<usize>

Performs the ^ operation. Read more
1.22.0 ยท Sourceยง

impl BitXorAssign<&Wrapping<i128>> for Wrapping<i128>

Sourceยง

fn bitxor_assign(&mut self, other: &Wrapping<i128>)

Performs the ^= operation. Read more
1.22.0 ยท Sourceยง

impl BitXorAssign<&Wrapping<i16>> for Wrapping<i16>

Sourceยง

fn bitxor_assign(&mut self, other: &Wrapping<i16>)

Performs the ^= operation. Read more
1.22.0 ยท Sourceยง

impl BitXorAssign<&Wrapping<i32>> for Wrapping<i32>

Sourceยง

fn bitxor_assign(&mut self, other: &Wrapping<i32>)

Performs the ^= operation. Read more
1.22.0 ยท Sourceยง

impl BitXorAssign<&Wrapping<i64>> for Wrapping<i64>

Sourceยง

fn bitxor_assign(&mut self, other: &Wrapping<i64>)

Performs the ^= operation. Read more
1.22.0 ยท Sourceยง

impl BitXorAssign<&Wrapping<i8>> for Wrapping<i8>

Sourceยง

fn bitxor_assign(&mut self, other: &Wrapping<i8>)

Performs the ^= operation. Read more
1.22.0 ยท Sourceยง

impl BitXorAssign<&Wrapping<isize>> for Wrapping<isize>

Sourceยง

fn bitxor_assign(&mut self, other: &Wrapping<isize>)

Performs the ^= operation. Read more
1.22.0 ยท Sourceยง

impl BitXorAssign<&Wrapping<u128>> for Wrapping<u128>

Sourceยง

fn bitxor_assign(&mut self, other: &Wrapping<u128>)

Performs the ^= operation. Read more
1.22.0 ยท Sourceยง

impl BitXorAssign<&Wrapping<u16>> for Wrapping<u16>

Sourceยง

fn bitxor_assign(&mut self, other: &Wrapping<u16>)

Performs the ^= operation. Read more
1.22.0 ยท Sourceยง

impl BitXorAssign<&Wrapping<u32>> for Wrapping<u32>

Sourceยง

fn bitxor_assign(&mut self, other: &Wrapping<u32>)

Performs the ^= operation. Read more
1.22.0 ยท Sourceยง

impl BitXorAssign<&Wrapping<u64>> for Wrapping<u64>

Sourceยง

fn bitxor_assign(&mut self, other: &Wrapping<u64>)

Performs the ^= operation. Read more
1.22.0 ยท Sourceยง

impl BitXorAssign<&Wrapping<u8>> for Wrapping<u8>

Sourceยง

fn bitxor_assign(&mut self, other: &Wrapping<u8>)

Performs the ^= operation. Read more
1.22.0 ยท Sourceยง

impl BitXorAssign<&Wrapping<usize>> for Wrapping<usize>

Sourceยง

fn bitxor_assign(&mut self, other: &Wrapping<usize>)

Performs the ^= operation. Read more
1.22.0 ยท Sourceยง

impl BitXorAssign<&i128> for Wrapping<i128>

Sourceยง

fn bitxor_assign(&mut self, other: &i128)

Performs the ^= operation. Read more
1.22.0 ยท Sourceยง

impl BitXorAssign<&i16> for Wrapping<i16>

Sourceยง

fn bitxor_assign(&mut self, other: &i16)

Performs the ^= operation. Read more
1.22.0 ยท Sourceยง

impl BitXorAssign<&i32> for Wrapping<i32>

Sourceยง

fn bitxor_assign(&mut self, other: &i32)

Performs the ^= operation. Read more
1.22.0 ยท Sourceยง

impl BitXorAssign<&i64> for Wrapping<i64>

Sourceยง

fn bitxor_assign(&mut self, other: &i64)

Performs the ^= operation. Read more
1.22.0 ยท Sourceยง

impl BitXorAssign<&i8> for Wrapping<i8>

Sourceยง

fn bitxor_assign(&mut self, other: &i8)

Performs the ^= operation. Read more
1.22.0 ยท Sourceยง

impl BitXorAssign<&isize> for Wrapping<isize>

Sourceยง

fn bitxor_assign(&mut self, other: &isize)

Performs the ^= operation. Read more
1.22.0 ยท Sourceยง

impl BitXorAssign<&u128> for Wrapping<u128>

Sourceยง

fn bitxor_assign(&mut self, other: &u128)

Performs the ^= operation. Read more
1.22.0 ยท Sourceยง

impl BitXorAssign<&u16> for Wrapping<u16>

Sourceยง

fn bitxor_assign(&mut self, other: &u16)

Performs the ^= operation. Read more
1.22.0 ยท Sourceยง

impl BitXorAssign<&u32> for Wrapping<u32>

Sourceยง

fn bitxor_assign(&mut self, other: &u32)

Performs the ^= operation. Read more
1.22.0 ยท Sourceยง

impl BitXorAssign<&u64> for Wrapping<u64>

Sourceยง

fn bitxor_assign(&mut self, other: &u64)

Performs the ^= operation. Read more
1.22.0 ยท Sourceยง

impl BitXorAssign<&u8> for Wrapping<u8>

Sourceยง

fn bitxor_assign(&mut self, other: &u8)

Performs the ^= operation. Read more
1.22.0 ยท Sourceยง

impl BitXorAssign<&usize> for Wrapping<usize>

Sourceยง

fn bitxor_assign(&mut self, other: &usize)

Performs the ^= operation. Read more
1.60.0 ยท Sourceยง

impl BitXorAssign<i128> for Wrapping<i128>

Sourceยง

fn bitxor_assign(&mut self, other: i128)

Performs the ^= operation. Read more
1.60.0 ยท Sourceยง

impl BitXorAssign<i16> for Wrapping<i16>

Sourceยง

fn bitxor_assign(&mut self, other: i16)

Performs the ^= operation. Read more
1.60.0 ยท Sourceยง

impl BitXorAssign<i32> for Wrapping<i32>

Sourceยง

fn bitxor_assign(&mut self, other: i32)

Performs the ^= operation. Read more
1.60.0 ยท Sourceยง

impl BitXorAssign<i64> for Wrapping<i64>

Sourceยง

fn bitxor_assign(&mut self, other: i64)

Performs the ^= operation. Read more
1.60.0 ยท Sourceยง

impl BitXorAssign<i8> for Wrapping<i8>

Sourceยง

fn bitxor_assign(&mut self, other: i8)

Performs the ^= operation. Read more
1.60.0 ยท Sourceยง

impl BitXorAssign<isize> for Wrapping<isize>

Sourceยง

fn bitxor_assign(&mut self, other: isize)

Performs the ^= operation. Read more
1.60.0 ยท Sourceยง

impl BitXorAssign<u128> for Wrapping<u128>

Sourceยง

fn bitxor_assign(&mut self, other: u128)

Performs the ^= operation. Read more
1.60.0 ยท Sourceยง

impl BitXorAssign<u16> for Wrapping<u16>

Sourceยง

fn bitxor_assign(&mut self, other: u16)

Performs the ^= operation. Read more
1.60.0 ยท Sourceยง

impl BitXorAssign<u32> for Wrapping<u32>

Sourceยง

fn bitxor_assign(&mut self, other: u32)

Performs the ^= operation. Read more
1.60.0 ยท Sourceยง

impl BitXorAssign<u64> for Wrapping<u64>

Sourceยง

fn bitxor_assign(&mut self, other: u64)

Performs the ^= operation. Read more
1.60.0 ยท Sourceยง

impl BitXorAssign<u8> for Wrapping<u8>

Sourceยง

fn bitxor_assign(&mut self, other: u8)

Performs the ^= operation. Read more
1.60.0 ยท Sourceยง

impl BitXorAssign<usize> for Wrapping<usize>

Sourceยง

fn bitxor_assign(&mut self, other: usize)

Performs the ^= operation. Read more
1.8.0 ยท Sourceยง

impl BitXorAssign for Wrapping<i128>

Sourceยง

fn bitxor_assign(&mut self, other: Wrapping<i128>)

Performs the ^= operation. Read more
1.8.0 ยท Sourceยง

impl BitXorAssign for Wrapping<i16>

Sourceยง

fn bitxor_assign(&mut self, other: Wrapping<i16>)

Performs the ^= operation. Read more
1.8.0 ยท Sourceยง

impl BitXorAssign for Wrapping<i32>

Sourceยง

fn bitxor_assign(&mut self, other: Wrapping<i32>)

Performs the ^= operation. Read more
1.8.0 ยท Sourceยง

impl BitXorAssign for Wrapping<i64>

Sourceยง

fn bitxor_assign(&mut self, other: Wrapping<i64>)

Performs the ^= operation. Read more
1.8.0 ยท Sourceยง

impl BitXorAssign for Wrapping<i8>

Sourceยง

fn bitxor_assign(&mut self, other: Wrapping<i8>)

Performs the ^= operation. Read more
1.8.0 ยท Sourceยง

impl BitXorAssign for Wrapping<isize>

Sourceยง

fn bitxor_assign(&mut self, other: Wrapping<isize>)

Performs the ^= operation. Read more
1.8.0 ยท Sourceยง

impl BitXorAssign for Wrapping<u128>

Sourceยง

fn bitxor_assign(&mut self, other: Wrapping<u128>)

Performs the ^= operation. Read more
1.8.0 ยท Sourceยง

impl BitXorAssign for Wrapping<u16>

Sourceยง

fn bitxor_assign(&mut self, other: Wrapping<u16>)

Performs the ^= operation. Read more
1.8.0 ยท Sourceยง

impl BitXorAssign for Wrapping<u32>

Sourceยง

fn bitxor_assign(&mut self, other: Wrapping<u32>)

Performs the ^= operation. Read more
1.8.0 ยท Sourceยง

impl BitXorAssign for Wrapping<u64>

Sourceยง

fn bitxor_assign(&mut self, other: Wrapping<u64>)

Performs the ^= operation. Read more
1.8.0 ยท Sourceยง

impl BitXorAssign for Wrapping<u8>

Sourceยง

fn bitxor_assign(&mut self, other: Wrapping<u8>)

Performs the ^= operation. Read more
1.8.0 ยท Sourceยง

impl BitXorAssign for Wrapping<usize>

Sourceยง

fn bitxor_assign(&mut self, other: Wrapping<usize>)

Performs the ^= operation. Read more
Sourceยง

impl<'de, Context, T> BorrowDecode<'de, Context> for Wrapping<T>
where T: BorrowDecode<'de, Context>,

Sourceยง

fn borrow_decode<D>(decoder: &mut D) -> Result<Wrapping<T>, DecodeError>
where D: BorrowDecoder<'de, Context = Context>,

Attempt to decode this type with the given BorrowDecode.
Sourceยง

impl<T> Bounded for Wrapping<T>
where T: Bounded,

Sourceยง

fn min_value() -> Wrapping<T>

Returns the smallest finite number this type can represent
Sourceยง

fn max_value() -> Wrapping<T>

Returns the largest finite number this type can represent
1.0.0 ยท Sourceยง

impl<T> Clone for Wrapping<T>
where T: Clone,

Sourceยง

fn clone(&self) -> Wrapping<T>

Returns a duplicate of the value. Read more
1.0.0 ยท Sourceยง

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

Performs copy-assignment from source. Read more
Sourceยง

impl<T> ConstOne for Wrapping<T>
where T: ConstOne, Wrapping<T>: Mul<Output = Wrapping<T>>,

Sourceยง

const ONE: Wrapping<T>

The multiplicative identity element of Self, 1.
Sourceยง

impl<T> ConstZero for Wrapping<T>
where T: ConstZero, Wrapping<T>: Add<Output = Wrapping<T>>,

Sourceยง

const ZERO: Wrapping<T>

The additive identity element of Self, 0.
1.0.0 ยท Sourceยง

impl<T> Debug for Wrapping<T>
where T: Debug,

Sourceยง

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

Formats the value using the given formatter. Read more
Sourceยง

impl<Context, T> Decode<Context> for Wrapping<T>
where T: Decode<Context>,

Sourceยง

fn decode<D>(decoder: &mut D) -> Result<Wrapping<T>, DecodeError>
where D: Decoder<Context = Context>,

Attempt to decode this type with the given Decode.
1.0.0 ยท Sourceยง

impl<T> Default for Wrapping<T>
where T: Default,

Sourceยง

fn default() -> Wrapping<T>

Returns the โ€œdefault valueโ€ for a type. Read more
Sourceยง

impl<'de, T> Deserialize<'de> for Wrapping<T>
where T: Deserialize<'de>,

Sourceยง

fn deserialize<D>( deserializer: D, ) -> Result<Wrapping<T>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
1.10.0 ยท Sourceยง

impl<T> Display for Wrapping<T>
where T: Display,

Sourceยง

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

Formats the value using the given formatter. Read more
1.14.0 ยท Sourceยง

impl Div<&Wrapping<i128>> for &Wrapping<i128>

Sourceยง

type Output = <Wrapping<i128> as Div>::Output

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: &Wrapping<i128>) -> <Wrapping<i128> as Div>::Output

Performs the / operation. Read more
1.14.0 ยท Sourceยง

impl Div<&Wrapping<i128>> for Wrapping<i128>

Sourceยง

type Output = <Wrapping<i128> as Div>::Output

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: &Wrapping<i128>) -> <Wrapping<i128> as Div>::Output

Performs the / operation. Read more
1.14.0 ยท Sourceยง

impl Div<&Wrapping<i16>> for &Wrapping<i16>

Sourceยง

type Output = <Wrapping<i16> as Div>::Output

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: &Wrapping<i16>) -> <Wrapping<i16> as Div>::Output

Performs the / operation. Read more
1.14.0 ยท Sourceยง

impl Div<&Wrapping<i16>> for Wrapping<i16>

Sourceยง

type Output = <Wrapping<i16> as Div>::Output

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: &Wrapping<i16>) -> <Wrapping<i16> as Div>::Output

Performs the / operation. Read more
1.14.0 ยท Sourceยง

impl Div<&Wrapping<i32>> for &Wrapping<i32>

Sourceยง

type Output = <Wrapping<i32> as Div>::Output

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: &Wrapping<i32>) -> <Wrapping<i32> as Div>::Output

Performs the / operation. Read more
1.14.0 ยท Sourceยง

impl Div<&Wrapping<i32>> for Wrapping<i32>

Sourceยง

type Output = <Wrapping<i32> as Div>::Output

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: &Wrapping<i32>) -> <Wrapping<i32> as Div>::Output

Performs the / operation. Read more
1.14.0 ยท Sourceยง

impl Div<&Wrapping<i64>> for &Wrapping<i64>

Sourceยง

type Output = <Wrapping<i64> as Div>::Output

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: &Wrapping<i64>) -> <Wrapping<i64> as Div>::Output

Performs the / operation. Read more
1.14.0 ยท Sourceยง

impl Div<&Wrapping<i64>> for Wrapping<i64>

Sourceยง

type Output = <Wrapping<i64> as Div>::Output

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: &Wrapping<i64>) -> <Wrapping<i64> as Div>::Output

Performs the / operation. Read more
1.14.0 ยท Sourceยง

impl Div<&Wrapping<i8>> for &Wrapping<i8>

Sourceยง

type Output = <Wrapping<i8> as Div>::Output

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: &Wrapping<i8>) -> <Wrapping<i8> as Div>::Output

Performs the / operation. Read more
1.14.0 ยท Sourceยง

impl Div<&Wrapping<i8>> for Wrapping<i8>

Sourceยง

type Output = <Wrapping<i8> as Div>::Output

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: &Wrapping<i8>) -> <Wrapping<i8> as Div>::Output

Performs the / operation. Read more
1.14.0 ยท Sourceยง

impl Div<&Wrapping<isize>> for &Wrapping<isize>

Sourceยง

type Output = <Wrapping<isize> as Div>::Output

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: &Wrapping<isize>) -> <Wrapping<isize> as Div>::Output

Performs the / operation. Read more
1.14.0 ยท Sourceยง

impl Div<&Wrapping<isize>> for Wrapping<isize>

Sourceยง

type Output = <Wrapping<isize> as Div>::Output

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: &Wrapping<isize>) -> <Wrapping<isize> as Div>::Output

Performs the / operation. Read more
1.14.0 ยท Sourceยง

impl Div<&Wrapping<u128>> for &Wrapping<u128>

Sourceยง

type Output = <Wrapping<u128> as Div>::Output

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: &Wrapping<u128>) -> <Wrapping<u128> as Div>::Output

Performs the / operation. Read more
1.14.0 ยท Sourceยง

impl Div<&Wrapping<u128>> for Wrapping<u128>

Sourceยง

type Output = <Wrapping<u128> as Div>::Output

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: &Wrapping<u128>) -> <Wrapping<u128> as Div>::Output

Performs the / operation. Read more
1.14.0 ยท Sourceยง

impl Div<&Wrapping<u16>> for &Wrapping<u16>

Sourceยง

type Output = <Wrapping<u16> as Div>::Output

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: &Wrapping<u16>) -> <Wrapping<u16> as Div>::Output

Performs the / operation. Read more
1.14.0 ยท Sourceยง

impl Div<&Wrapping<u16>> for Wrapping<u16>

Sourceยง

type Output = <Wrapping<u16> as Div>::Output

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: &Wrapping<u16>) -> <Wrapping<u16> as Div>::Output

Performs the / operation. Read more
1.14.0 ยท Sourceยง

impl Div<&Wrapping<u32>> for &Wrapping<u32>

Sourceยง

type Output = <Wrapping<u32> as Div>::Output

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: &Wrapping<u32>) -> <Wrapping<u32> as Div>::Output

Performs the / operation. Read more
1.14.0 ยท Sourceยง

impl Div<&Wrapping<u32>> for Wrapping<u32>

Sourceยง

type Output = <Wrapping<u32> as Div>::Output

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: &Wrapping<u32>) -> <Wrapping<u32> as Div>::Output

Performs the / operation. Read more
1.14.0 ยท Sourceยง

impl Div<&Wrapping<u64>> for &Wrapping<u64>

Sourceยง

type Output = <Wrapping<u64> as Div>::Output

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: &Wrapping<u64>) -> <Wrapping<u64> as Div>::Output

Performs the / operation. Read more
1.14.0 ยท Sourceยง

impl Div<&Wrapping<u64>> for Wrapping<u64>

Sourceยง

type Output = <Wrapping<u64> as Div>::Output

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: &Wrapping<u64>) -> <Wrapping<u64> as Div>::Output

Performs the / operation. Read more
1.14.0 ยท Sourceยง

impl Div<&Wrapping<u8>> for &Wrapping<u8>

Sourceยง

type Output = <Wrapping<u8> as Div>::Output

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: &Wrapping<u8>) -> <Wrapping<u8> as Div>::Output

Performs the / operation. Read more
1.14.0 ยท Sourceยง

impl Div<&Wrapping<u8>> for Wrapping<u8>

Sourceยง

type Output = <Wrapping<u8> as Div>::Output

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: &Wrapping<u8>) -> <Wrapping<u8> as Div>::Output

Performs the / operation. Read more
1.14.0 ยท Sourceยง

impl Div<&Wrapping<usize>> for &Wrapping<usize>

Sourceยง

type Output = <Wrapping<usize> as Div>::Output

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: &Wrapping<usize>) -> <Wrapping<usize> as Div>::Output

Performs the / operation. Read more
1.14.0 ยท Sourceยง

impl Div<&Wrapping<usize>> for Wrapping<usize>

Sourceยง

type Output = <Wrapping<usize> as Div>::Output

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: &Wrapping<usize>) -> <Wrapping<usize> as Div>::Output

Performs the / operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<i128> as Div>::Output

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: Wrapping<i128>) -> <Wrapping<i128> as Div>::Output

Performs the / operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<i16> as Div>::Output

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: Wrapping<i16>) -> <Wrapping<i16> as Div>::Output

Performs the / operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<i32> as Div>::Output

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: Wrapping<i32>) -> <Wrapping<i32> as Div>::Output

Performs the / operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<i64> as Div>::Output

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: Wrapping<i64>) -> <Wrapping<i64> as Div>::Output

Performs the / operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<i8> as Div>::Output

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: Wrapping<i8>) -> <Wrapping<i8> as Div>::Output

Performs the / operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<isize> as Div>::Output

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: Wrapping<isize>) -> <Wrapping<isize> as Div>::Output

Performs the / operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<u128> as Div>::Output

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: Wrapping<u128>) -> <Wrapping<u128> as Div>::Output

Performs the / operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<u16> as Div>::Output

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: Wrapping<u16>) -> <Wrapping<u16> as Div>::Output

Performs the / operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<u32> as Div>::Output

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: Wrapping<u32>) -> <Wrapping<u32> as Div>::Output

Performs the / operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<u64> as Div>::Output

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: Wrapping<u64>) -> <Wrapping<u64> as Div>::Output

Performs the / operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<u8> as Div>::Output

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: Wrapping<u8>) -> <Wrapping<u8> as Div>::Output

Performs the / operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<usize> as Div>::Output

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: Wrapping<usize>) -> <Wrapping<usize> as Div>::Output

Performs the / operation. Read more
1.3.0 ยท Sourceยง

impl Div for Wrapping<i128>

Sourceยง

type Output = Wrapping<i128>

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: Wrapping<i128>) -> Wrapping<i128>

Performs the / operation. Read more
1.3.0 ยท Sourceยง

impl Div for Wrapping<i16>

Sourceยง

type Output = Wrapping<i16>

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: Wrapping<i16>) -> Wrapping<i16>

Performs the / operation. Read more
1.3.0 ยท Sourceยง

impl Div for Wrapping<i32>

Sourceยง

type Output = Wrapping<i32>

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: Wrapping<i32>) -> Wrapping<i32>

Performs the / operation. Read more
1.3.0 ยท Sourceยง

impl Div for Wrapping<i64>

Sourceยง

type Output = Wrapping<i64>

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: Wrapping<i64>) -> Wrapping<i64>

Performs the / operation. Read more
1.3.0 ยท Sourceยง

impl Div for Wrapping<i8>

Sourceยง

type Output = Wrapping<i8>

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: Wrapping<i8>) -> Wrapping<i8>

Performs the / operation. Read more
1.3.0 ยท Sourceยง

impl Div for Wrapping<isize>

Sourceยง

type Output = Wrapping<isize>

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: Wrapping<isize>) -> Wrapping<isize>

Performs the / operation. Read more
1.3.0 ยท Sourceยง

impl Div for Wrapping<u128>

Sourceยง

type Output = Wrapping<u128>

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: Wrapping<u128>) -> Wrapping<u128>

Performs the / operation. Read more
1.3.0 ยท Sourceยง

impl Div for Wrapping<u16>

Sourceยง

type Output = Wrapping<u16>

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: Wrapping<u16>) -> Wrapping<u16>

Performs the / operation. Read more
1.3.0 ยท Sourceยง

impl Div for Wrapping<u32>

Sourceยง

type Output = Wrapping<u32>

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: Wrapping<u32>) -> Wrapping<u32>

Performs the / operation. Read more
1.3.0 ยท Sourceยง

impl Div for Wrapping<u64>

Sourceยง

type Output = Wrapping<u64>

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: Wrapping<u64>) -> Wrapping<u64>

Performs the / operation. Read more
1.3.0 ยท Sourceยง

impl Div for Wrapping<u8>

Sourceยง

type Output = Wrapping<u8>

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: Wrapping<u8>) -> Wrapping<u8>

Performs the / operation. Read more
1.3.0 ยท Sourceยง

impl Div for Wrapping<usize>

Sourceยง

type Output = Wrapping<usize>

The resulting type after applying the / operator.
Sourceยง

fn div(self, other: Wrapping<usize>) -> Wrapping<usize>

Performs the / operation. Read more
1.22.0 ยท Sourceยง

impl DivAssign<&Wrapping<i128>> for Wrapping<i128>

Sourceยง

fn div_assign(&mut self, other: &Wrapping<i128>)

Performs the /= operation. Read more
1.22.0 ยท Sourceยง

impl DivAssign<&Wrapping<i16>> for Wrapping<i16>

Sourceยง

fn div_assign(&mut self, other: &Wrapping<i16>)

Performs the /= operation. Read more
1.22.0 ยท Sourceยง

impl DivAssign<&Wrapping<i32>> for Wrapping<i32>

Sourceยง

fn div_assign(&mut self, other: &Wrapping<i32>)

Performs the /= operation. Read more
1.22.0 ยท Sourceยง

impl DivAssign<&Wrapping<i64>> for Wrapping<i64>

Sourceยง

fn div_assign(&mut self, other: &Wrapping<i64>)

Performs the /= operation. Read more
1.22.0 ยท Sourceยง

impl DivAssign<&Wrapping<i8>> for Wrapping<i8>

Sourceยง

fn div_assign(&mut self, other: &Wrapping<i8>)

Performs the /= operation. Read more
1.22.0 ยท Sourceยง

impl DivAssign<&Wrapping<isize>> for Wrapping<isize>

Sourceยง

fn div_assign(&mut self, other: &Wrapping<isize>)

Performs the /= operation. Read more
1.22.0 ยท Sourceยง

impl DivAssign<&Wrapping<u128>> for Wrapping<u128>

Sourceยง

fn div_assign(&mut self, other: &Wrapping<u128>)

Performs the /= operation. Read more
1.22.0 ยท Sourceยง

impl DivAssign<&Wrapping<u16>> for Wrapping<u16>

Sourceยง

fn div_assign(&mut self, other: &Wrapping<u16>)

Performs the /= operation. Read more
1.22.0 ยท Sourceยง

impl DivAssign<&Wrapping<u32>> for Wrapping<u32>

Sourceยง

fn div_assign(&mut self, other: &Wrapping<u32>)

Performs the /= operation. Read more
1.22.0 ยท Sourceยง

impl DivAssign<&Wrapping<u64>> for Wrapping<u64>

Sourceยง

fn div_assign(&mut self, other: &Wrapping<u64>)

Performs the /= operation. Read more
1.22.0 ยท Sourceยง

impl DivAssign<&Wrapping<u8>> for Wrapping<u8>

Sourceยง

fn div_assign(&mut self, other: &Wrapping<u8>)

Performs the /= operation. Read more
1.22.0 ยท Sourceยง

impl DivAssign<&Wrapping<usize>> for Wrapping<usize>

Sourceยง

fn div_assign(&mut self, other: &Wrapping<usize>)

Performs the /= operation. Read more
1.22.0 ยท Sourceยง

impl DivAssign<&i128> for Wrapping<i128>

Sourceยง

fn div_assign(&mut self, other: &i128)

Performs the /= operation. Read more
1.22.0 ยท Sourceยง

impl DivAssign<&i16> for Wrapping<i16>

Sourceยง

fn div_assign(&mut self, other: &i16)

Performs the /= operation. Read more
1.22.0 ยท Sourceยง

impl DivAssign<&i32> for Wrapping<i32>

Sourceยง

fn div_assign(&mut self, other: &i32)

Performs the /= operation. Read more
1.22.0 ยท Sourceยง

impl DivAssign<&i64> for Wrapping<i64>

Sourceยง

fn div_assign(&mut self, other: &i64)

Performs the /= operation. Read more
1.22.0 ยท Sourceยง

impl DivAssign<&i8> for Wrapping<i8>

Sourceยง

fn div_assign(&mut self, other: &i8)

Performs the /= operation. Read more
1.22.0 ยท Sourceยง

impl DivAssign<&isize> for Wrapping<isize>

Sourceยง

fn div_assign(&mut self, other: &isize)

Performs the /= operation. Read more
1.22.0 ยท Sourceยง

impl DivAssign<&u128> for Wrapping<u128>

Sourceยง

fn div_assign(&mut self, other: &u128)

Performs the /= operation. Read more
1.22.0 ยท Sourceยง

impl DivAssign<&u16> for Wrapping<u16>

Sourceยง

fn div_assign(&mut self, other: &u16)

Performs the /= operation. Read more
1.22.0 ยท Sourceยง

impl DivAssign<&u32> for Wrapping<u32>

Sourceยง

fn div_assign(&mut self, other: &u32)

Performs the /= operation. Read more
1.22.0 ยท Sourceยง

impl DivAssign<&u64> for Wrapping<u64>

Sourceยง

fn div_assign(&mut self, other: &u64)

Performs the /= operation. Read more
1.22.0 ยท Sourceยง

impl DivAssign<&u8> for Wrapping<u8>

Sourceยง

fn div_assign(&mut self, other: &u8)

Performs the /= operation. Read more
1.22.0 ยท Sourceยง

impl DivAssign<&usize> for Wrapping<usize>

Sourceยง

fn div_assign(&mut self, other: &usize)

Performs the /= operation. Read more
1.60.0 ยท Sourceยง

impl DivAssign<i128> for Wrapping<i128>

Sourceยง

fn div_assign(&mut self, other: i128)

Performs the /= operation. Read more
1.60.0 ยท Sourceยง

impl DivAssign<i16> for Wrapping<i16>

Sourceยง

fn div_assign(&mut self, other: i16)

Performs the /= operation. Read more
1.60.0 ยท Sourceยง

impl DivAssign<i32> for Wrapping<i32>

Sourceยง

fn div_assign(&mut self, other: i32)

Performs the /= operation. Read more
1.60.0 ยท Sourceยง

impl DivAssign<i64> for Wrapping<i64>

Sourceยง

fn div_assign(&mut self, other: i64)

Performs the /= operation. Read more
1.60.0 ยท Sourceยง

impl DivAssign<i8> for Wrapping<i8>

Sourceยง

fn div_assign(&mut self, other: i8)

Performs the /= operation. Read more
1.60.0 ยท Sourceยง

impl DivAssign<isize> for Wrapping<isize>

Sourceยง

fn div_assign(&mut self, other: isize)

Performs the /= operation. Read more
1.60.0 ยท Sourceยง

impl DivAssign<u128> for Wrapping<u128>

Sourceยง

fn div_assign(&mut self, other: u128)

Performs the /= operation. Read more
1.60.0 ยท Sourceยง

impl DivAssign<u16> for Wrapping<u16>

Sourceยง

fn div_assign(&mut self, other: u16)

Performs the /= operation. Read more
1.60.0 ยท Sourceยง

impl DivAssign<u32> for Wrapping<u32>

Sourceยง

fn div_assign(&mut self, other: u32)

Performs the /= operation. Read more
1.60.0 ยท Sourceยง

impl DivAssign<u64> for Wrapping<u64>

Sourceยง

fn div_assign(&mut self, other: u64)

Performs the /= operation. Read more
1.60.0 ยท Sourceยง

impl DivAssign<u8> for Wrapping<u8>

Sourceยง

fn div_assign(&mut self, other: u8)

Performs the /= operation. Read more
1.60.0 ยท Sourceยง

impl DivAssign<usize> for Wrapping<usize>

Sourceยง

fn div_assign(&mut self, other: usize)

Performs the /= operation. Read more
1.8.0 ยท Sourceยง

impl DivAssign for Wrapping<i128>

Sourceยง

fn div_assign(&mut self, other: Wrapping<i128>)

Performs the /= operation. Read more
1.8.0 ยท Sourceยง

impl DivAssign for Wrapping<i16>

Sourceยง

fn div_assign(&mut self, other: Wrapping<i16>)

Performs the /= operation. Read more
1.8.0 ยท Sourceยง

impl DivAssign for Wrapping<i32>

Sourceยง

fn div_assign(&mut self, other: Wrapping<i32>)

Performs the /= operation. Read more
1.8.0 ยท Sourceยง

impl DivAssign for Wrapping<i64>

Sourceยง

fn div_assign(&mut self, other: Wrapping<i64>)

Performs the /= operation. Read more
1.8.0 ยท Sourceยง

impl DivAssign for Wrapping<i8>

Sourceยง

fn div_assign(&mut self, other: Wrapping<i8>)

Performs the /= operation. Read more
1.8.0 ยท Sourceยง

impl DivAssign for Wrapping<isize>

Sourceยง

fn div_assign(&mut self, other: Wrapping<isize>)

Performs the /= operation. Read more
1.8.0 ยท Sourceยง

impl DivAssign for Wrapping<u128>

Sourceยง

fn div_assign(&mut self, other: Wrapping<u128>)

Performs the /= operation. Read more
1.8.0 ยท Sourceยง

impl DivAssign for Wrapping<u16>

Sourceยง

fn div_assign(&mut self, other: Wrapping<u16>)

Performs the /= operation. Read more
1.8.0 ยท Sourceยง

impl DivAssign for Wrapping<u32>

Sourceยง

fn div_assign(&mut self, other: Wrapping<u32>)

Performs the /= operation. Read more
1.8.0 ยท Sourceยง

impl DivAssign for Wrapping<u64>

Sourceยง

fn div_assign(&mut self, other: Wrapping<u64>)

Performs the /= operation. Read more
1.8.0 ยท Sourceยง

impl DivAssign for Wrapping<u8>

Sourceยง

fn div_assign(&mut self, other: Wrapping<u8>)

Performs the /= operation. Read more
1.8.0 ยท Sourceยง

impl DivAssign for Wrapping<usize>

Sourceยง

fn div_assign(&mut self, other: Wrapping<usize>)

Performs the /= operation. Read more
Sourceยง

impl<T> Encode for Wrapping<T>
where T: Encode,

Sourceยง

fn encode<E>(&self, encoder: &mut E) -> Result<(), EncodeError>
where E: Encoder,

Encode a given type.
ยง

impl<T> FromBytes for Wrapping<T>
where T: FromBytes,

ยง

fn ref_from_bytes( source: &[u8], ) -> Result<&Self, ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, Infallible>>
where Self: KnownLayout + Immutable,

Interprets the given source as a &Self. Read more
ยง

fn ref_from_prefix( source: &[u8], ) -> Result<(&Self, &[u8]), ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, Infallible>>
where Self: KnownLayout + Immutable,

Interprets the prefix of the given source as a &Self without copying. Read more
ยง

fn ref_from_suffix( source: &[u8], ) -> Result<(&[u8], &Self), ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, Infallible>>
where Self: Immutable + KnownLayout,

Interprets the suffix of the given bytes as a &Self. Read more
ยง

fn mut_from_bytes( source: &mut [u8], ) -> Result<&mut Self, ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, Infallible>>
where Self: IntoBytes + KnownLayout,

Interprets the given source as a &mut Self. Read more
ยง

fn mut_from_prefix( source: &mut [u8], ) -> Result<(&mut Self, &mut [u8]), ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, Infallible>>
where Self: IntoBytes + KnownLayout,

Interprets the prefix of the given source as a &mut Self without copying. Read more
ยง

fn mut_from_suffix( source: &mut [u8], ) -> Result<(&mut [u8], &mut Self), ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, Infallible>>
where Self: IntoBytes + KnownLayout,

Interprets the suffix of the given source as a &mut Self without copying. Read more
ยง

fn ref_from_bytes_with_elems( source: &[u8], count: usize, ) -> Result<&Self, ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, Infallible>>
where Self: KnownLayout<PointerMetadata = usize> + Immutable,

Interprets the given source as a &Self with a DST length equal to count. Read more
ยง

fn ref_from_prefix_with_elems( source: &[u8], count: usize, ) -> Result<(&Self, &[u8]), ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, Infallible>>
where Self: KnownLayout<PointerMetadata = usize> + Immutable,

Interprets the prefix of the given source as a DST &Self with length equal to count. Read more
ยง

fn ref_from_suffix_with_elems( source: &[u8], count: usize, ) -> Result<(&[u8], &Self), ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, Infallible>>
where Self: KnownLayout<PointerMetadata = usize> + Immutable,

Interprets the suffix of the given source as a DST &Self with length equal to count. Read more
ยง

fn mut_from_bytes_with_elems( source: &mut [u8], count: usize, ) -> Result<&mut Self, ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, Infallible>>
where Self: IntoBytes + KnownLayout<PointerMetadata = usize> + Immutable,

Interprets the given source as a &mut Self with a DST length equal to count. Read more
ยง

fn mut_from_prefix_with_elems( source: &mut [u8], count: usize, ) -> Result<(&mut Self, &mut [u8]), ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, Infallible>>
where Self: IntoBytes + KnownLayout<PointerMetadata = usize>,

Interprets the prefix of the given source as a &mut Self with DST length equal to count. Read more
ยง

fn mut_from_suffix_with_elems( source: &mut [u8], count: usize, ) -> Result<(&mut [u8], &mut Self), ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, Infallible>>
where Self: IntoBytes + KnownLayout<PointerMetadata = usize>,

Interprets the suffix of the given source as a &mut Self with DST length equal to count. Read more
ยง

fn read_from_bytes(source: &[u8]) -> Result<Self, SizeError<&[u8], Self>>
where Self: Sized,

Reads a copy of Self from the given source. Read more
ยง

fn read_from_prefix( source: &[u8], ) -> Result<(Self, &[u8]), SizeError<&[u8], Self>>
where Self: Sized,

Reads a copy of Self from the prefix of the given source. Read more
ยง

fn read_from_suffix( source: &[u8], ) -> Result<(&[u8], Self), SizeError<&[u8], Self>>
where Self: Sized,

Reads a copy of Self from the suffix of the given source. Read more
Sourceยง

impl<T> FromPrimitive for Wrapping<T>
where T: FromPrimitive,

Sourceยง

fn from_isize(n: isize) -> Option<Wrapping<T>>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
Sourceยง

fn from_i8(n: i8) -> Option<Wrapping<T>>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
Sourceยง

fn from_i16(n: i16) -> Option<Wrapping<T>>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
Sourceยง

fn from_i32(n: i32) -> Option<Wrapping<T>>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
Sourceยง

fn from_i64(n: i64) -> Option<Wrapping<T>>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
Sourceยง

fn from_i128(n: i128) -> Option<Wrapping<T>>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
Sourceยง

fn from_usize(n: usize) -> Option<Wrapping<T>>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
Sourceยง

fn from_u8(n: u8) -> Option<Wrapping<T>>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
Sourceยง

fn from_u16(n: u16) -> Option<Wrapping<T>>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
Sourceยง

fn from_u32(n: u32) -> Option<Wrapping<T>>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
Sourceยง

fn from_u64(n: u64) -> Option<Wrapping<T>>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
Sourceยง

fn from_u128(n: u128) -> Option<Wrapping<T>>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
Sourceยง

fn from_f32(n: f32) -> Option<Wrapping<T>>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
Sourceยง

fn from_f64(n: f64) -> Option<Wrapping<T>>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
ยง

impl<T> FromZeros for Wrapping<T>
where T: FromZeros,

ยง

fn zero(&mut self)

Overwrites self with zeros. Read more
ยง

fn new_zeroed() -> Self
where Self: Sized,

Creates an instance of Self from zeroed bytes. Read more
1.0.0 ยท Sourceยง

impl<T> Hash for Wrapping<T>
where T: Hash,

Sourceยง

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

Feeds this value into the given Hasher. Read more
1.3.0 ยท Sourceยง

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

Feeds a slice of this type into the given Hasher. Read more
ยง

impl<T> IntoBytes for Wrapping<T>
where T: IntoBytes,

ยง

fn as_bytes(&self) -> &[u8] โ“˜
where Self: Immutable,

Gets the bytes of this value. Read more
ยง

fn as_mut_bytes(&mut self) -> &mut [u8] โ“˜
where Self: FromBytes,

Gets the bytes of this value mutably. Read more
ยง

fn write_to(&self, dst: &mut [u8]) -> Result<(), SizeError<&Self, &mut [u8]>>
where Self: Immutable,

Writes a copy of self to dst. Read more
ยง

fn write_to_prefix( &self, dst: &mut [u8], ) -> Result<(), SizeError<&Self, &mut [u8]>>
where Self: Immutable,

Writes a copy of self to the prefix of dst. Read more
ยง

fn write_to_suffix( &self, dst: &mut [u8], ) -> Result<(), SizeError<&Self, &mut [u8]>>
where Self: Immutable,

Writes a copy of self to the suffix of dst. Read more
ยง

impl<T> KnownLayout for Wrapping<T>

ยง

type PointerMetadata = ()

The type of metadata stored in a pointer to Self. Read more
1.11.0 ยท Sourceยง

impl<T> LowerHex for Wrapping<T>
where T: LowerHex,

Sourceยง

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

Formats the value using the given formatter. Read more
1.14.0 ยท Sourceยง

impl Mul<&Wrapping<i128>> for &Wrapping<i128>

Sourceยง

type Output = <Wrapping<i128> as Mul>::Output

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: &Wrapping<i128>) -> <Wrapping<i128> as Mul>::Output

Performs the * operation. Read more
1.14.0 ยท Sourceยง

impl Mul<&Wrapping<i128>> for Wrapping<i128>

Sourceยง

type Output = <Wrapping<i128> as Mul>::Output

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: &Wrapping<i128>) -> <Wrapping<i128> as Mul>::Output

Performs the * operation. Read more
1.14.0 ยท Sourceยง

impl Mul<&Wrapping<i16>> for &Wrapping<i16>

Sourceยง

type Output = <Wrapping<i16> as Mul>::Output

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: &Wrapping<i16>) -> <Wrapping<i16> as Mul>::Output

Performs the * operation. Read more
1.14.0 ยท Sourceยง

impl Mul<&Wrapping<i16>> for Wrapping<i16>

Sourceยง

type Output = <Wrapping<i16> as Mul>::Output

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: &Wrapping<i16>) -> <Wrapping<i16> as Mul>::Output

Performs the * operation. Read more
1.14.0 ยท Sourceยง

impl Mul<&Wrapping<i32>> for &Wrapping<i32>

Sourceยง

type Output = <Wrapping<i32> as Mul>::Output

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: &Wrapping<i32>) -> <Wrapping<i32> as Mul>::Output

Performs the * operation. Read more
1.14.0 ยท Sourceยง

impl Mul<&Wrapping<i32>> for Wrapping<i32>

Sourceยง

type Output = <Wrapping<i32> as Mul>::Output

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: &Wrapping<i32>) -> <Wrapping<i32> as Mul>::Output

Performs the * operation. Read more
1.14.0 ยท Sourceยง

impl Mul<&Wrapping<i64>> for &Wrapping<i64>

Sourceยง

type Output = <Wrapping<i64> as Mul>::Output

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: &Wrapping<i64>) -> <Wrapping<i64> as Mul>::Output

Performs the * operation. Read more
1.14.0 ยท Sourceยง

impl Mul<&Wrapping<i64>> for Wrapping<i64>

Sourceยง

type Output = <Wrapping<i64> as Mul>::Output

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: &Wrapping<i64>) -> <Wrapping<i64> as Mul>::Output

Performs the * operation. Read more
1.14.0 ยท Sourceยง

impl Mul<&Wrapping<i8>> for &Wrapping<i8>

Sourceยง

type Output = <Wrapping<i8> as Mul>::Output

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: &Wrapping<i8>) -> <Wrapping<i8> as Mul>::Output

Performs the * operation. Read more
1.14.0 ยท Sourceยง

impl Mul<&Wrapping<i8>> for Wrapping<i8>

Sourceยง

type Output = <Wrapping<i8> as Mul>::Output

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: &Wrapping<i8>) -> <Wrapping<i8> as Mul>::Output

Performs the * operation. Read more
1.14.0 ยท Sourceยง

impl Mul<&Wrapping<isize>> for &Wrapping<isize>

Sourceยง

type Output = <Wrapping<isize> as Mul>::Output

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: &Wrapping<isize>) -> <Wrapping<isize> as Mul>::Output

Performs the * operation. Read more
1.14.0 ยท Sourceยง

impl Mul<&Wrapping<isize>> for Wrapping<isize>

Sourceยง

type Output = <Wrapping<isize> as Mul>::Output

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: &Wrapping<isize>) -> <Wrapping<isize> as Mul>::Output

Performs the * operation. Read more
1.14.0 ยท Sourceยง

impl Mul<&Wrapping<u128>> for &Wrapping<u128>

Sourceยง

type Output = <Wrapping<u128> as Mul>::Output

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: &Wrapping<u128>) -> <Wrapping<u128> as Mul>::Output

Performs the * operation. Read more
1.14.0 ยท Sourceยง

impl Mul<&Wrapping<u128>> for Wrapping<u128>

Sourceยง

type Output = <Wrapping<u128> as Mul>::Output

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: &Wrapping<u128>) -> <Wrapping<u128> as Mul>::Output

Performs the * operation. Read more
1.14.0 ยท Sourceยง

impl Mul<&Wrapping<u16>> for &Wrapping<u16>

Sourceยง

type Output = <Wrapping<u16> as Mul>::Output

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: &Wrapping<u16>) -> <Wrapping<u16> as Mul>::Output

Performs the * operation. Read more
1.14.0 ยท Sourceยง

impl Mul<&Wrapping<u16>> for Wrapping<u16>

Sourceยง

type Output = <Wrapping<u16> as Mul>::Output

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: &Wrapping<u16>) -> <Wrapping<u16> as Mul>::Output

Performs the * operation. Read more
1.14.0 ยท Sourceยง

impl Mul<&Wrapping<u32>> for &Wrapping<u32>

Sourceยง

type Output = <Wrapping<u32> as Mul>::Output

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: &Wrapping<u32>) -> <Wrapping<u32> as Mul>::Output

Performs the * operation. Read more
1.14.0 ยท Sourceยง

impl Mul<&Wrapping<u32>> for Wrapping<u32>

Sourceยง

type Output = <Wrapping<u32> as Mul>::Output

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: &Wrapping<u32>) -> <Wrapping<u32> as Mul>::Output

Performs the * operation. Read more
1.14.0 ยท Sourceยง

impl Mul<&Wrapping<u64>> for &Wrapping<u64>

Sourceยง

type Output = <Wrapping<u64> as Mul>::Output

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: &Wrapping<u64>) -> <Wrapping<u64> as Mul>::Output

Performs the * operation. Read more
1.14.0 ยท Sourceยง

impl Mul<&Wrapping<u64>> for Wrapping<u64>

Sourceยง

type Output = <Wrapping<u64> as Mul>::Output

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: &Wrapping<u64>) -> <Wrapping<u64> as Mul>::Output

Performs the * operation. Read more
1.14.0 ยท Sourceยง

impl Mul<&Wrapping<u8>> for &Wrapping<u8>

Sourceยง

type Output = <Wrapping<u8> as Mul>::Output

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: &Wrapping<u8>) -> <Wrapping<u8> as Mul>::Output

Performs the * operation. Read more
1.14.0 ยท Sourceยง

impl Mul<&Wrapping<u8>> for Wrapping<u8>

Sourceยง

type Output = <Wrapping<u8> as Mul>::Output

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: &Wrapping<u8>) -> <Wrapping<u8> as Mul>::Output

Performs the * operation. Read more
1.14.0 ยท Sourceยง

impl Mul<&Wrapping<usize>> for &Wrapping<usize>

Sourceยง

type Output = <Wrapping<usize> as Mul>::Output

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: &Wrapping<usize>) -> <Wrapping<usize> as Mul>::Output

Performs the * operation. Read more
1.14.0 ยท Sourceยง

impl Mul<&Wrapping<usize>> for Wrapping<usize>

Sourceยง

type Output = <Wrapping<usize> as Mul>::Output

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: &Wrapping<usize>) -> <Wrapping<usize> as Mul>::Output

Performs the * operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<i128> as Mul>::Output

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: Wrapping<i128>) -> <Wrapping<i128> as Mul>::Output

Performs the * operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<i16> as Mul>::Output

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: Wrapping<i16>) -> <Wrapping<i16> as Mul>::Output

Performs the * operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<i32> as Mul>::Output

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: Wrapping<i32>) -> <Wrapping<i32> as Mul>::Output

Performs the * operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<i64> as Mul>::Output

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: Wrapping<i64>) -> <Wrapping<i64> as Mul>::Output

Performs the * operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<i8> as Mul>::Output

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: Wrapping<i8>) -> <Wrapping<i8> as Mul>::Output

Performs the * operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<isize> as Mul>::Output

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: Wrapping<isize>) -> <Wrapping<isize> as Mul>::Output

Performs the * operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<u128> as Mul>::Output

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: Wrapping<u128>) -> <Wrapping<u128> as Mul>::Output

Performs the * operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<u16> as Mul>::Output

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: Wrapping<u16>) -> <Wrapping<u16> as Mul>::Output

Performs the * operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<u32> as Mul>::Output

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: Wrapping<u32>) -> <Wrapping<u32> as Mul>::Output

Performs the * operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<u64> as Mul>::Output

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: Wrapping<u64>) -> <Wrapping<u64> as Mul>::Output

Performs the * operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<u8> as Mul>::Output

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: Wrapping<u8>) -> <Wrapping<u8> as Mul>::Output

Performs the * operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<usize> as Mul>::Output

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: Wrapping<usize>) -> <Wrapping<usize> as Mul>::Output

Performs the * operation. Read more
1.0.0 ยท Sourceยง

impl Mul for Wrapping<i128>

Sourceยง

type Output = Wrapping<i128>

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: Wrapping<i128>) -> Wrapping<i128>

Performs the * operation. Read more
1.0.0 ยท Sourceยง

impl Mul for Wrapping<i16>

Sourceยง

type Output = Wrapping<i16>

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: Wrapping<i16>) -> Wrapping<i16>

Performs the * operation. Read more
1.0.0 ยท Sourceยง

impl Mul for Wrapping<i32>

Sourceยง

type Output = Wrapping<i32>

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: Wrapping<i32>) -> Wrapping<i32>

Performs the * operation. Read more
1.0.0 ยท Sourceยง

impl Mul for Wrapping<i64>

Sourceยง

type Output = Wrapping<i64>

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: Wrapping<i64>) -> Wrapping<i64>

Performs the * operation. Read more
1.0.0 ยท Sourceยง

impl Mul for Wrapping<i8>

Sourceยง

type Output = Wrapping<i8>

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: Wrapping<i8>) -> Wrapping<i8>

Performs the * operation. Read more
1.0.0 ยท Sourceยง

impl Mul for Wrapping<isize>

Sourceยง

type Output = Wrapping<isize>

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: Wrapping<isize>) -> Wrapping<isize>

Performs the * operation. Read more
1.0.0 ยท Sourceยง

impl Mul for Wrapping<u128>

Sourceยง

type Output = Wrapping<u128>

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: Wrapping<u128>) -> Wrapping<u128>

Performs the * operation. Read more
1.0.0 ยท Sourceยง

impl Mul for Wrapping<u16>

Sourceยง

type Output = Wrapping<u16>

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: Wrapping<u16>) -> Wrapping<u16>

Performs the * operation. Read more
1.0.0 ยท Sourceยง

impl Mul for Wrapping<u32>

Sourceยง

type Output = Wrapping<u32>

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: Wrapping<u32>) -> Wrapping<u32>

Performs the * operation. Read more
1.0.0 ยท Sourceยง

impl Mul for Wrapping<u64>

Sourceยง

type Output = Wrapping<u64>

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: Wrapping<u64>) -> Wrapping<u64>

Performs the * operation. Read more
1.0.0 ยท Sourceยง

impl Mul for Wrapping<u8>

Sourceยง

type Output = Wrapping<u8>

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: Wrapping<u8>) -> Wrapping<u8>

Performs the * operation. Read more
1.0.0 ยท Sourceยง

impl Mul for Wrapping<usize>

Sourceยง

type Output = Wrapping<usize>

The resulting type after applying the * operator.
Sourceยง

fn mul(self, other: Wrapping<usize>) -> Wrapping<usize>

Performs the * operation. Read more
1.22.0 ยท Sourceยง

impl MulAssign<&Wrapping<i128>> for Wrapping<i128>

Sourceยง

fn mul_assign(&mut self, other: &Wrapping<i128>)

Performs the *= operation. Read more
1.22.0 ยท Sourceยง

impl MulAssign<&Wrapping<i16>> for Wrapping<i16>

Sourceยง

fn mul_assign(&mut self, other: &Wrapping<i16>)

Performs the *= operation. Read more
1.22.0 ยท Sourceยง

impl MulAssign<&Wrapping<i32>> for Wrapping<i32>

Sourceยง

fn mul_assign(&mut self, other: &Wrapping<i32>)

Performs the *= operation. Read more
1.22.0 ยท Sourceยง

impl MulAssign<&Wrapping<i64>> for Wrapping<i64>

Sourceยง

fn mul_assign(&mut self, other: &Wrapping<i64>)

Performs the *= operation. Read more
1.22.0 ยท Sourceยง

impl MulAssign<&Wrapping<i8>> for Wrapping<i8>

Sourceยง

fn mul_assign(&mut self, other: &Wrapping<i8>)

Performs the *= operation. Read more
1.22.0 ยท Sourceยง

impl MulAssign<&Wrapping<isize>> for Wrapping<isize>

Sourceยง

fn mul_assign(&mut self, other: &Wrapping<isize>)

Performs the *= operation. Read more
1.22.0 ยท Sourceยง

impl MulAssign<&Wrapping<u128>> for Wrapping<u128>

Sourceยง

fn mul_assign(&mut self, other: &Wrapping<u128>)

Performs the *= operation. Read more
1.22.0 ยท Sourceยง

impl MulAssign<&Wrapping<u16>> for Wrapping<u16>

Sourceยง

fn mul_assign(&mut self, other: &Wrapping<u16>)

Performs the *= operation. Read more
1.22.0 ยท Sourceยง

impl MulAssign<&Wrapping<u32>> for Wrapping<u32>

Sourceยง

fn mul_assign(&mut self, other: &Wrapping<u32>)

Performs the *= operation. Read more
1.22.0 ยท Sourceยง

impl MulAssign<&Wrapping<u64>> for Wrapping<u64>

Sourceยง

fn mul_assign(&mut self, other: &Wrapping<u64>)

Performs the *= operation. Read more
1.22.0 ยท Sourceยง

impl MulAssign<&Wrapping<u8>> for Wrapping<u8>

Sourceยง

fn mul_assign(&mut self, other: &Wrapping<u8>)

Performs the *= operation. Read more
1.22.0 ยท Sourceยง

impl MulAssign<&Wrapping<usize>> for Wrapping<usize>

Sourceยง

fn mul_assign(&mut self, other: &Wrapping<usize>)

Performs the *= operation. Read more
1.22.0 ยท Sourceยง

impl MulAssign<&i128> for Wrapping<i128>

Sourceยง

fn mul_assign(&mut self, other: &i128)

Performs the *= operation. Read more
1.22.0 ยท Sourceยง

impl MulAssign<&i16> for Wrapping<i16>

Sourceยง

fn mul_assign(&mut self, other: &i16)

Performs the *= operation. Read more
1.22.0 ยท Sourceยง

impl MulAssign<&i32> for Wrapping<i32>

Sourceยง

fn mul_assign(&mut self, other: &i32)

Performs the *= operation. Read more
1.22.0 ยท Sourceยง

impl MulAssign<&i64> for Wrapping<i64>

Sourceยง

fn mul_assign(&mut self, other: &i64)

Performs the *= operation. Read more
1.22.0 ยท Sourceยง

impl MulAssign<&i8> for Wrapping<i8>

Sourceยง

fn mul_assign(&mut self, other: &i8)

Performs the *= operation. Read more
1.22.0 ยท Sourceยง

impl MulAssign<&isize> for Wrapping<isize>

Sourceยง

fn mul_assign(&mut self, other: &isize)

Performs the *= operation. Read more
1.22.0 ยท Sourceยง

impl MulAssign<&u128> for Wrapping<u128>

Sourceยง

fn mul_assign(&mut self, other: &u128)

Performs the *= operation. Read more
1.22.0 ยท Sourceยง

impl MulAssign<&u16> for Wrapping<u16>

Sourceยง

fn mul_assign(&mut self, other: &u16)

Performs the *= operation. Read more
1.22.0 ยท Sourceยง

impl MulAssign<&u32> for Wrapping<u32>

Sourceยง

fn mul_assign(&mut self, other: &u32)

Performs the *= operation. Read more
1.22.0 ยท Sourceยง

impl MulAssign<&u64> for Wrapping<u64>

Sourceยง

fn mul_assign(&mut self, other: &u64)

Performs the *= operation. Read more
1.22.0 ยท Sourceยง

impl MulAssign<&u8> for Wrapping<u8>

Sourceยง

fn mul_assign(&mut self, other: &u8)

Performs the *= operation. Read more
1.22.0 ยท Sourceยง

impl MulAssign<&usize> for Wrapping<usize>

Sourceยง

fn mul_assign(&mut self, other: &usize)

Performs the *= operation. Read more
1.60.0 ยท Sourceยง

impl MulAssign<i128> for Wrapping<i128>

Sourceยง

fn mul_assign(&mut self, other: i128)

Performs the *= operation. Read more
1.60.0 ยท Sourceยง

impl MulAssign<i16> for Wrapping<i16>

Sourceยง

fn mul_assign(&mut self, other: i16)

Performs the *= operation. Read more
1.60.0 ยท Sourceยง

impl MulAssign<i32> for Wrapping<i32>

Sourceยง

fn mul_assign(&mut self, other: i32)

Performs the *= operation. Read more
1.60.0 ยท Sourceยง

impl MulAssign<i64> for Wrapping<i64>

Sourceยง

fn mul_assign(&mut self, other: i64)

Performs the *= operation. Read more
1.60.0 ยท Sourceยง

impl MulAssign<i8> for Wrapping<i8>

Sourceยง

fn mul_assign(&mut self, other: i8)

Performs the *= operation. Read more
1.60.0 ยท Sourceยง

impl MulAssign<isize> for Wrapping<isize>

Sourceยง

fn mul_assign(&mut self, other: isize)

Performs the *= operation. Read more
1.60.0 ยท Sourceยง

impl MulAssign<u128> for Wrapping<u128>

Sourceยง

fn mul_assign(&mut self, other: u128)

Performs the *= operation. Read more
1.60.0 ยท Sourceยง

impl MulAssign<u16> for Wrapping<u16>

Sourceยง

fn mul_assign(&mut self, other: u16)

Performs the *= operation. Read more
1.60.0 ยท Sourceยง

impl MulAssign<u32> for Wrapping<u32>

Sourceยง

fn mul_assign(&mut self, other: u32)

Performs the *= operation. Read more
1.60.0 ยท Sourceยง

impl MulAssign<u64> for Wrapping<u64>

Sourceยง

fn mul_assign(&mut self, other: u64)

Performs the *= operation. Read more
1.60.0 ยท Sourceยง

impl MulAssign<u8> for Wrapping<u8>

Sourceยง

fn mul_assign(&mut self, other: u8)

Performs the *= operation. Read more
1.60.0 ยท Sourceยง

impl MulAssign<usize> for Wrapping<usize>

Sourceยง

fn mul_assign(&mut self, other: usize)

Performs the *= operation. Read more
1.8.0 ยท Sourceยง

impl MulAssign for Wrapping<i128>

Sourceยง

fn mul_assign(&mut self, other: Wrapping<i128>)

Performs the *= operation. Read more
1.8.0 ยท Sourceยง

impl MulAssign for Wrapping<i16>

Sourceยง

fn mul_assign(&mut self, other: Wrapping<i16>)

Performs the *= operation. Read more
1.8.0 ยท Sourceยง

impl MulAssign for Wrapping<i32>

Sourceยง

fn mul_assign(&mut self, other: Wrapping<i32>)

Performs the *= operation. Read more
1.8.0 ยท Sourceยง

impl MulAssign for Wrapping<i64>

Sourceยง

fn mul_assign(&mut self, other: Wrapping<i64>)

Performs the *= operation. Read more
1.8.0 ยท Sourceยง

impl MulAssign for Wrapping<i8>

Sourceยง

fn mul_assign(&mut self, other: Wrapping<i8>)

Performs the *= operation. Read more
1.8.0 ยท Sourceยง

impl MulAssign for Wrapping<isize>

Sourceยง

fn mul_assign(&mut self, other: Wrapping<isize>)

Performs the *= operation. Read more
1.8.0 ยท Sourceยง

impl MulAssign for Wrapping<u128>

Sourceยง

fn mul_assign(&mut self, other: Wrapping<u128>)

Performs the *= operation. Read more
1.8.0 ยท Sourceยง

impl MulAssign for Wrapping<u16>

Sourceยง

fn mul_assign(&mut self, other: Wrapping<u16>)

Performs the *= operation. Read more
1.8.0 ยท Sourceยง

impl MulAssign for Wrapping<u32>

Sourceยง

fn mul_assign(&mut self, other: Wrapping<u32>)

Performs the *= operation. Read more
1.8.0 ยท Sourceยง

impl MulAssign for Wrapping<u64>

Sourceยง

fn mul_assign(&mut self, other: Wrapping<u64>)

Performs the *= operation. Read more
1.8.0 ยท Sourceยง

impl MulAssign for Wrapping<u8>

Sourceยง

fn mul_assign(&mut self, other: Wrapping<u8>)

Performs the *= operation. Read more
1.8.0 ยท Sourceยง

impl MulAssign for Wrapping<usize>

Sourceยง

fn mul_assign(&mut self, other: Wrapping<usize>)

Performs the *= operation. Read more
1.14.0 ยท Sourceยง

impl Neg for &Wrapping<i128>

Sourceยง

type Output = <Wrapping<i128> as Neg>::Output

The resulting type after applying the - operator.
Sourceยง

fn neg(self) -> <Wrapping<i128> as Neg>::Output

Performs the unary - operation. Read more
1.14.0 ยท Sourceยง

impl Neg for &Wrapping<i16>

Sourceยง

type Output = <Wrapping<i16> as Neg>::Output

The resulting type after applying the - operator.
Sourceยง

fn neg(self) -> <Wrapping<i16> as Neg>::Output

Performs the unary - operation. Read more
1.14.0 ยท Sourceยง

impl Neg for &Wrapping<i32>

Sourceยง

type Output = <Wrapping<i32> as Neg>::Output

The resulting type after applying the - operator.
Sourceยง

fn neg(self) -> <Wrapping<i32> as Neg>::Output

Performs the unary - operation. Read more
1.14.0 ยท Sourceยง

impl Neg for &Wrapping<i64>

Sourceยง

type Output = <Wrapping<i64> as Neg>::Output

The resulting type after applying the - operator.
Sourceยง

fn neg(self) -> <Wrapping<i64> as Neg>::Output

Performs the unary - operation. Read more
1.14.0 ยท Sourceยง

impl Neg for &Wrapping<i8>

Sourceยง

type Output = <Wrapping<i8> as Neg>::Output

The resulting type after applying the - operator.
Sourceยง

fn neg(self) -> <Wrapping<i8> as Neg>::Output

Performs the unary - operation. Read more
1.14.0 ยท Sourceยง

impl Neg for &Wrapping<isize>

Sourceยง

type Output = <Wrapping<isize> as Neg>::Output

The resulting type after applying the - operator.
Sourceยง

fn neg(self) -> <Wrapping<isize> as Neg>::Output

Performs the unary - operation. Read more
1.14.0 ยท Sourceยง

impl Neg for &Wrapping<u128>

Sourceยง

type Output = <Wrapping<u128> as Neg>::Output

The resulting type after applying the - operator.
Sourceยง

fn neg(self) -> <Wrapping<u128> as Neg>::Output

Performs the unary - operation. Read more
1.14.0 ยท Sourceยง

impl Neg for &Wrapping<u16>

Sourceยง

type Output = <Wrapping<u16> as Neg>::Output

The resulting type after applying the - operator.
Sourceยง

fn neg(self) -> <Wrapping<u16> as Neg>::Output

Performs the unary - operation. Read more
1.14.0 ยท Sourceยง

impl Neg for &Wrapping<u32>

Sourceยง

type Output = <Wrapping<u32> as Neg>::Output

The resulting type after applying the - operator.
Sourceยง

fn neg(self) -> <Wrapping<u32> as Neg>::Output

Performs the unary - operation. Read more
1.14.0 ยท Sourceยง

impl Neg for &Wrapping<u64>

Sourceยง

type Output = <Wrapping<u64> as Neg>::Output

The resulting type after applying the - operator.
Sourceยง

fn neg(self) -> <Wrapping<u64> as Neg>::Output

Performs the unary - operation. Read more
1.14.0 ยท Sourceยง

impl Neg for &Wrapping<u8>

Sourceยง

type Output = <Wrapping<u8> as Neg>::Output

The resulting type after applying the - operator.
Sourceยง

fn neg(self) -> <Wrapping<u8> as Neg>::Output

Performs the unary - operation. Read more
1.14.0 ยท Sourceยง

impl Neg for &Wrapping<usize>

Sourceยง

type Output = <Wrapping<usize> as Neg>::Output

The resulting type after applying the - operator.
Sourceยง

fn neg(self) -> <Wrapping<usize> as Neg>::Output

Performs the unary - operation. Read more
1.10.0 ยท Sourceยง

impl Neg for Wrapping<i128>

Sourceยง

type Output = Wrapping<i128>

The resulting type after applying the - operator.
Sourceยง

fn neg(self) -> Wrapping<i128>

Performs the unary - operation. Read more
1.10.0 ยท Sourceยง

impl Neg for Wrapping<i16>

Sourceยง

type Output = Wrapping<i16>

The resulting type after applying the - operator.
Sourceยง

fn neg(self) -> Wrapping<i16>

Performs the unary - operation. Read more
1.10.0 ยท Sourceยง

impl Neg for Wrapping<i32>

Sourceยง

type Output = Wrapping<i32>

The resulting type after applying the - operator.
Sourceยง

fn neg(self) -> Wrapping<i32>

Performs the unary - operation. Read more
1.10.0 ยท Sourceยง

impl Neg for Wrapping<i64>

Sourceยง

type Output = Wrapping<i64>

The resulting type after applying the - operator.
Sourceยง

fn neg(self) -> Wrapping<i64>

Performs the unary - operation. Read more
1.10.0 ยท Sourceยง

impl Neg for Wrapping<i8>

Sourceยง

type Output = Wrapping<i8>

The resulting type after applying the - operator.
Sourceยง

fn neg(self) -> Wrapping<i8>

Performs the unary - operation. Read more
1.10.0 ยท Sourceยง

impl Neg for Wrapping<isize>

Sourceยง

type Output = Wrapping<isize>

The resulting type after applying the - operator.
Sourceยง

fn neg(self) -> Wrapping<isize>

Performs the unary - operation. Read more
1.10.0 ยท Sourceยง

impl Neg for Wrapping<u128>

Sourceยง

type Output = Wrapping<u128>

The resulting type after applying the - operator.
Sourceยง

fn neg(self) -> Wrapping<u128>

Performs the unary - operation. Read more
1.10.0 ยท Sourceยง

impl Neg for Wrapping<u16>

Sourceยง

type Output = Wrapping<u16>

The resulting type after applying the - operator.
Sourceยง

fn neg(self) -> Wrapping<u16>

Performs the unary - operation. Read more
1.10.0 ยท Sourceยง

impl Neg for Wrapping<u32>

Sourceยง

type Output = Wrapping<u32>

The resulting type after applying the - operator.
Sourceยง

fn neg(self) -> Wrapping<u32>

Performs the unary - operation. Read more
1.10.0 ยท Sourceยง

impl Neg for Wrapping<u64>

Sourceยง

type Output = Wrapping<u64>

The resulting type after applying the - operator.
Sourceยง

fn neg(self) -> Wrapping<u64>

Performs the unary - operation. Read more
1.10.0 ยท Sourceยง

impl Neg for Wrapping<u8>

Sourceยง

type Output = Wrapping<u8>

The resulting type after applying the - operator.
Sourceยง

fn neg(self) -> Wrapping<u8>

Performs the unary - operation. Read more
1.10.0 ยท Sourceยง

impl Neg for Wrapping<usize>

Sourceยง

type Output = Wrapping<usize>

The resulting type after applying the - operator.
Sourceยง

fn neg(self) -> Wrapping<usize>

Performs the unary - operation. Read more
1.14.0 ยท Sourceยง

impl Not for &Wrapping<i128>

Sourceยง

type Output = <Wrapping<i128> as Not>::Output

The resulting type after applying the ! operator.
Sourceยง

fn not(self) -> <Wrapping<i128> as Not>::Output

Performs the unary ! operation. Read more
1.14.0 ยท Sourceยง

impl Not for &Wrapping<i16>

Sourceยง

type Output = <Wrapping<i16> as Not>::Output

The resulting type after applying the ! operator.
Sourceยง

fn not(self) -> <Wrapping<i16> as Not>::Output

Performs the unary ! operation. Read more
1.14.0 ยท Sourceยง

impl Not for &Wrapping<i32>

Sourceยง

type Output = <Wrapping<i32> as Not>::Output

The resulting type after applying the ! operator.
Sourceยง

fn not(self) -> <Wrapping<i32> as Not>::Output

Performs the unary ! operation. Read more
1.14.0 ยท Sourceยง

impl Not for &Wrapping<i64>

Sourceยง

type Output = <Wrapping<i64> as Not>::Output

The resulting type after applying the ! operator.
Sourceยง

fn not(self) -> <Wrapping<i64> as Not>::Output

Performs the unary ! operation. Read more
1.14.0 ยท Sourceยง

impl Not for &Wrapping<i8>

Sourceยง

type Output = <Wrapping<i8> as Not>::Output

The resulting type after applying the ! operator.
Sourceยง

fn not(self) -> <Wrapping<i8> as Not>::Output

Performs the unary ! operation. Read more
1.14.0 ยท Sourceยง

impl Not for &Wrapping<isize>

Sourceยง

type Output = <Wrapping<isize> as Not>::Output

The resulting type after applying the ! operator.
Sourceยง

fn not(self) -> <Wrapping<isize> as Not>::Output

Performs the unary ! operation. Read more
1.14.0 ยท Sourceยง

impl Not for &Wrapping<u128>

Sourceยง

type Output = <Wrapping<u128> as Not>::Output

The resulting type after applying the ! operator.
Sourceยง

fn not(self) -> <Wrapping<u128> as Not>::Output

Performs the unary ! operation. Read more
1.14.0 ยท Sourceยง

impl Not for &Wrapping<u16>

Sourceยง

type Output = <Wrapping<u16> as Not>::Output

The resulting type after applying the ! operator.
Sourceยง

fn not(self) -> <Wrapping<u16> as Not>::Output

Performs the unary ! operation. Read more
1.14.0 ยท Sourceยง

impl Not for &Wrapping<u32>

Sourceยง

type Output = <Wrapping<u32> as Not>::Output

The resulting type after applying the ! operator.
Sourceยง

fn not(self) -> <Wrapping<u32> as Not>::Output

Performs the unary ! operation. Read more
1.14.0 ยท Sourceยง

impl Not for &Wrapping<u64>

Sourceยง

type Output = <Wrapping<u64> as Not>::Output

The resulting type after applying the ! operator.
Sourceยง

fn not(self) -> <Wrapping<u64> as Not>::Output

Performs the unary ! operation. Read more
1.14.0 ยท Sourceยง

impl Not for &Wrapping<u8>

Sourceยง

type Output = <Wrapping<u8> as Not>::Output

The resulting type after applying the ! operator.
Sourceยง

fn not(self) -> <Wrapping<u8> as Not>::Output

Performs the unary ! operation. Read more
1.14.0 ยท Sourceยง

impl Not for &Wrapping<usize>

Sourceยง

type Output = <Wrapping<usize> as Not>::Output

The resulting type after applying the ! operator.
Sourceยง

fn not(self) -> <Wrapping<usize> as Not>::Output

Performs the unary ! operation. Read more
1.0.0 ยท Sourceยง

impl Not for Wrapping<i128>

Sourceยง

type Output = Wrapping<i128>

The resulting type after applying the ! operator.
Sourceยง

fn not(self) -> Wrapping<i128>

Performs the unary ! operation. Read more
1.0.0 ยท Sourceยง

impl Not for Wrapping<i16>

Sourceยง

type Output = Wrapping<i16>

The resulting type after applying the ! operator.
Sourceยง

fn not(self) -> Wrapping<i16>

Performs the unary ! operation. Read more
1.0.0 ยท Sourceยง

impl Not for Wrapping<i32>

Sourceยง

type Output = Wrapping<i32>

The resulting type after applying the ! operator.
Sourceยง

fn not(self) -> Wrapping<i32>

Performs the unary ! operation. Read more
1.0.0 ยท Sourceยง

impl Not for Wrapping<i64>

Sourceยง

type Output = Wrapping<i64>

The resulting type after applying the ! operator.
Sourceยง

fn not(self) -> Wrapping<i64>

Performs the unary ! operation. Read more
1.0.0 ยท Sourceยง

impl Not for Wrapping<i8>

Sourceยง

type Output = Wrapping<i8>

The resulting type after applying the ! operator.
Sourceยง

fn not(self) -> Wrapping<i8>

Performs the unary ! operation. Read more
1.0.0 ยท Sourceยง

impl Not for Wrapping<isize>

Sourceยง

type Output = Wrapping<isize>

The resulting type after applying the ! operator.
Sourceยง

fn not(self) -> Wrapping<isize>

Performs the unary ! operation. Read more
1.0.0 ยท Sourceยง

impl Not for Wrapping<u128>

Sourceยง

type Output = Wrapping<u128>

The resulting type after applying the ! operator.
Sourceยง

fn not(self) -> Wrapping<u128>

Performs the unary ! operation. Read more
1.0.0 ยท Sourceยง

impl Not for Wrapping<u16>

Sourceยง

type Output = Wrapping<u16>

The resulting type after applying the ! operator.
Sourceยง

fn not(self) -> Wrapping<u16>

Performs the unary ! operation. Read more
1.0.0 ยท Sourceยง

impl Not for Wrapping<u32>

Sourceยง

type Output = Wrapping<u32>

The resulting type after applying the ! operator.
Sourceยง

fn not(self) -> Wrapping<u32>

Performs the unary ! operation. Read more
1.0.0 ยท Sourceยง

impl Not for Wrapping<u64>

Sourceยง

type Output = Wrapping<u64>

The resulting type after applying the ! operator.
Sourceยง

fn not(self) -> Wrapping<u64>

Performs the unary ! operation. Read more
1.0.0 ยท Sourceยง

impl Not for Wrapping<u8>

Sourceยง

type Output = Wrapping<u8>

The resulting type after applying the ! operator.
Sourceยง

fn not(self) -> Wrapping<u8>

Performs the unary ! operation. Read more
1.0.0 ยท Sourceยง

impl Not for Wrapping<usize>

Sourceยง

type Output = Wrapping<usize>

The resulting type after applying the ! operator.
Sourceยง

fn not(self) -> Wrapping<usize>

Performs the unary ! operation. Read more
Sourceยง

impl<T> Num for Wrapping<T>
where T: Num, Wrapping<T>: NumOps,

Sourceยง

type FromStrRadixErr = <T as Num>::FromStrRadixErr

Sourceยง

fn from_str_radix( str: &str, radix: u32, ) -> Result<Wrapping<T>, <Wrapping<T> as Num>::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
Sourceยง

impl<T> NumCast for Wrapping<T>
where T: NumCast,

Sourceยง

fn from<U>(n: U) -> Option<Wrapping<T>>
where U: ToPrimitive,

Creates a number from another value that can be converted into a primitive via the ToPrimitive trait. If the source value cannot be represented by the target type, then None is returned. Read more
1.11.0 ยท Sourceยง

impl<T> Octal for Wrapping<T>
where T: Octal,

Sourceยง

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

Formats the value using the given formatter. Read more
Sourceยง

impl<T> One for Wrapping<T>
where T: One, Wrapping<T>: Mul<Output = Wrapping<T>>,

Sourceยง

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
Sourceยง

fn one() -> Wrapping<T>

Returns the multiplicative identity element of Self, 1. Read more
Sourceยง

fn is_one(&self) -> bool
where Self: PartialEq,

Returns true if self is equal to the multiplicative identity. Read more
1.0.0 ยท Sourceยง

impl<T> Ord for Wrapping<T>
where T: Ord,

Sourceยง

fn cmp(&self, other: &Wrapping<T>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 ยท Sourceยง

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

Compares and returns the maximum of two values. Read more
1.21.0 ยท Sourceยง

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

Compares and returns the minimum of two values. Read more
1.50.0 ยท Sourceยง

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

Restrict a value to a certain interval. Read more
1.0.0 ยท Sourceยง

impl<T> PartialEq for Wrapping<T>
where T: PartialEq,

Sourceยง

fn eq(&self, other: &Wrapping<T>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 ยท Sourceยง

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

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

impl<T> PartialOrd for Wrapping<T>
where T: PartialOrd,

Sourceยง

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

This method returns an ordering between self and other values if one exists. Read more
1.0.0 ยท Sourceยง

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

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

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

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

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

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

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

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

impl<'a, 'b> Pow<&'a u8> for &'b Wrapping<i128>

Sourceยง

type Output = Wrapping<i128>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a u8) -> Wrapping<i128>

Returns self to the power rhs. Read more
Sourceยง

impl<'a, 'b> Pow<&'a u8> for &'b Wrapping<i16>

Sourceยง

type Output = Wrapping<i16>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a u8) -> Wrapping<i16>

Returns self to the power rhs. Read more
Sourceยง

impl<'a, 'b> Pow<&'a u8> for &'b Wrapping<i32>

Sourceยง

type Output = Wrapping<i32>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a u8) -> Wrapping<i32>

Returns self to the power rhs. Read more
Sourceยง

impl<'a, 'b> Pow<&'a u8> for &'b Wrapping<i64>

Sourceยง

type Output = Wrapping<i64>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a u8) -> Wrapping<i64>

Returns self to the power rhs. Read more
Sourceยง

impl<'a, 'b> Pow<&'a u8> for &'b Wrapping<i8>

Sourceยง

type Output = Wrapping<i8>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a u8) -> Wrapping<i8>

Returns self to the power rhs. Read more
Sourceยง

impl<'a, 'b> Pow<&'a u8> for &'b Wrapping<isize>

Sourceยง

type Output = Wrapping<isize>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a u8) -> Wrapping<isize>

Returns self to the power rhs. Read more
Sourceยง

impl<'a, 'b> Pow<&'a u8> for &'b Wrapping<u128>

Sourceยง

type Output = Wrapping<u128>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a u8) -> Wrapping<u128>

Returns self to the power rhs. Read more
Sourceยง

impl<'a, 'b> Pow<&'a u8> for &'b Wrapping<u16>

Sourceยง

type Output = Wrapping<u16>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a u8) -> Wrapping<u16>

Returns self to the power rhs. Read more
Sourceยง

impl<'a, 'b> Pow<&'a u8> for &'b Wrapping<u32>

Sourceยง

type Output = Wrapping<u32>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a u8) -> Wrapping<u32>

Returns self to the power rhs. Read more
Sourceยง

impl<'a, 'b> Pow<&'a u8> for &'b Wrapping<u64>

Sourceยง

type Output = Wrapping<u64>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a u8) -> Wrapping<u64>

Returns self to the power rhs. Read more
Sourceยง

impl<'a, 'b> Pow<&'a u8> for &'b Wrapping<u8>

Sourceยง

type Output = Wrapping<u8>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a u8) -> Wrapping<u8>

Returns self to the power rhs. Read more
Sourceยง

impl<'a, 'b> Pow<&'a u8> for &'b Wrapping<usize>

Sourceยง

type Output = Wrapping<usize>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a u8) -> Wrapping<usize>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<&'a u8> for Wrapping<i128>

Sourceยง

type Output = Wrapping<i128>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a u8) -> Wrapping<i128>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<&'a u8> for Wrapping<i16>

Sourceยง

type Output = Wrapping<i16>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a u8) -> Wrapping<i16>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<&'a u8> for Wrapping<i32>

Sourceยง

type Output = Wrapping<i32>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a u8) -> Wrapping<i32>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<&'a u8> for Wrapping<i64>

Sourceยง

type Output = Wrapping<i64>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a u8) -> Wrapping<i64>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<&'a u8> for Wrapping<i8>

Sourceยง

type Output = Wrapping<i8>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a u8) -> Wrapping<i8>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<&'a u8> for Wrapping<isize>

Sourceยง

type Output = Wrapping<isize>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a u8) -> Wrapping<isize>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<&'a u8> for Wrapping<u128>

Sourceยง

type Output = Wrapping<u128>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a u8) -> Wrapping<u128>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<&'a u8> for Wrapping<u16>

Sourceยง

type Output = Wrapping<u16>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a u8) -> Wrapping<u16>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<&'a u8> for Wrapping<u32>

Sourceยง

type Output = Wrapping<u32>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a u8) -> Wrapping<u32>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<&'a u8> for Wrapping<u64>

Sourceยง

type Output = Wrapping<u64>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a u8) -> Wrapping<u64>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<&'a u8> for Wrapping<u8>

Sourceยง

type Output = Wrapping<u8>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a u8) -> Wrapping<u8>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<&'a u8> for Wrapping<usize>

Sourceยง

type Output = Wrapping<usize>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a u8) -> Wrapping<usize>

Returns self to the power rhs. Read more
Sourceยง

impl<'a, 'b> Pow<&'a usize> for &'b Wrapping<i128>

Sourceยง

type Output = Wrapping<i128>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a usize) -> Wrapping<i128>

Returns self to the power rhs. Read more
Sourceยง

impl<'a, 'b> Pow<&'a usize> for &'b Wrapping<i16>

Sourceยง

type Output = Wrapping<i16>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a usize) -> Wrapping<i16>

Returns self to the power rhs. Read more
Sourceยง

impl<'a, 'b> Pow<&'a usize> for &'b Wrapping<i32>

Sourceยง

type Output = Wrapping<i32>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a usize) -> Wrapping<i32>

Returns self to the power rhs. Read more
Sourceยง

impl<'a, 'b> Pow<&'a usize> for &'b Wrapping<i64>

Sourceยง

type Output = Wrapping<i64>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a usize) -> Wrapping<i64>

Returns self to the power rhs. Read more
Sourceยง

impl<'a, 'b> Pow<&'a usize> for &'b Wrapping<i8>

Sourceยง

type Output = Wrapping<i8>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a usize) -> Wrapping<i8>

Returns self to the power rhs. Read more
Sourceยง

impl<'a, 'b> Pow<&'a usize> for &'b Wrapping<isize>

Sourceยง

type Output = Wrapping<isize>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a usize) -> Wrapping<isize>

Returns self to the power rhs. Read more
Sourceยง

impl<'a, 'b> Pow<&'a usize> for &'b Wrapping<u128>

Sourceยง

type Output = Wrapping<u128>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a usize) -> Wrapping<u128>

Returns self to the power rhs. Read more
Sourceยง

impl<'a, 'b> Pow<&'a usize> for &'b Wrapping<u16>

Sourceยง

type Output = Wrapping<u16>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a usize) -> Wrapping<u16>

Returns self to the power rhs. Read more
Sourceยง

impl<'a, 'b> Pow<&'a usize> for &'b Wrapping<u32>

Sourceยง

type Output = Wrapping<u32>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a usize) -> Wrapping<u32>

Returns self to the power rhs. Read more
Sourceยง

impl<'a, 'b> Pow<&'a usize> for &'b Wrapping<u64>

Sourceยง

type Output = Wrapping<u64>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a usize) -> Wrapping<u64>

Returns self to the power rhs. Read more
Sourceยง

impl<'a, 'b> Pow<&'a usize> for &'b Wrapping<u8>

Sourceยง

type Output = Wrapping<u8>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a usize) -> Wrapping<u8>

Returns self to the power rhs. Read more
Sourceยง

impl<'a, 'b> Pow<&'a usize> for &'b Wrapping<usize>

Sourceยง

type Output = Wrapping<usize>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a usize) -> Wrapping<usize>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<&'a usize> for Wrapping<i128>

Sourceยง

type Output = Wrapping<i128>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a usize) -> Wrapping<i128>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<&'a usize> for Wrapping<i16>

Sourceยง

type Output = Wrapping<i16>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a usize) -> Wrapping<i16>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<&'a usize> for Wrapping<i32>

Sourceยง

type Output = Wrapping<i32>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a usize) -> Wrapping<i32>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<&'a usize> for Wrapping<i64>

Sourceยง

type Output = Wrapping<i64>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a usize) -> Wrapping<i64>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<&'a usize> for Wrapping<i8>

Sourceยง

type Output = Wrapping<i8>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a usize) -> Wrapping<i8>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<&'a usize> for Wrapping<isize>

Sourceยง

type Output = Wrapping<isize>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a usize) -> Wrapping<isize>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<&'a usize> for Wrapping<u128>

Sourceยง

type Output = Wrapping<u128>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a usize) -> Wrapping<u128>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<&'a usize> for Wrapping<u16>

Sourceยง

type Output = Wrapping<u16>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a usize) -> Wrapping<u16>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<&'a usize> for Wrapping<u32>

Sourceยง

type Output = Wrapping<u32>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a usize) -> Wrapping<u32>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<&'a usize> for Wrapping<u64>

Sourceยง

type Output = Wrapping<u64>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a usize) -> Wrapping<u64>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<&'a usize> for Wrapping<u8>

Sourceยง

type Output = Wrapping<u8>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a usize) -> Wrapping<u8>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<&'a usize> for Wrapping<usize>

Sourceยง

type Output = Wrapping<usize>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: &'a usize) -> Wrapping<usize>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<u8> for &'a Wrapping<i128>

Sourceยง

type Output = Wrapping<i128>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: u8) -> Wrapping<i128>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<u8> for &'a Wrapping<i16>

Sourceยง

type Output = Wrapping<i16>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: u8) -> Wrapping<i16>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<u8> for &'a Wrapping<i32>

Sourceยง

type Output = Wrapping<i32>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: u8) -> Wrapping<i32>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<u8> for &'a Wrapping<i64>

Sourceยง

type Output = Wrapping<i64>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: u8) -> Wrapping<i64>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<u8> for &'a Wrapping<i8>

Sourceยง

type Output = Wrapping<i8>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: u8) -> Wrapping<i8>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<u8> for &'a Wrapping<isize>

Sourceยง

type Output = Wrapping<isize>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: u8) -> Wrapping<isize>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<u8> for &'a Wrapping<u128>

Sourceยง

type Output = Wrapping<u128>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: u8) -> Wrapping<u128>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<u8> for &'a Wrapping<u16>

Sourceยง

type Output = Wrapping<u16>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: u8) -> Wrapping<u16>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<u8> for &'a Wrapping<u32>

Sourceยง

type Output = Wrapping<u32>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: u8) -> Wrapping<u32>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<u8> for &'a Wrapping<u64>

Sourceยง

type Output = Wrapping<u64>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: u8) -> Wrapping<u64>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<u8> for &'a Wrapping<u8>

Sourceยง

type Output = Wrapping<u8>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: u8) -> Wrapping<u8>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<u8> for &'a Wrapping<usize>

Sourceยง

type Output = Wrapping<usize>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: u8) -> Wrapping<usize>

Returns self to the power rhs. Read more
Sourceยง

impl Pow<u8> for Wrapping<i128>

Sourceยง

type Output = Wrapping<i128>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: u8) -> Wrapping<i128>

Returns self to the power rhs. Read more
Sourceยง

impl Pow<u8> for Wrapping<i16>

Sourceยง

type Output = Wrapping<i16>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: u8) -> Wrapping<i16>

Returns self to the power rhs. Read more
Sourceยง

impl Pow<u8> for Wrapping<i32>

Sourceยง

type Output = Wrapping<i32>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: u8) -> Wrapping<i32>

Returns self to the power rhs. Read more
Sourceยง

impl Pow<u8> for Wrapping<i64>

Sourceยง

type Output = Wrapping<i64>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: u8) -> Wrapping<i64>

Returns self to the power rhs. Read more
Sourceยง

impl Pow<u8> for Wrapping<i8>

Sourceยง

type Output = Wrapping<i8>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: u8) -> Wrapping<i8>

Returns self to the power rhs. Read more
Sourceยง

impl Pow<u8> for Wrapping<isize>

Sourceยง

type Output = Wrapping<isize>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: u8) -> Wrapping<isize>

Returns self to the power rhs. Read more
Sourceยง

impl Pow<u8> for Wrapping<u128>

Sourceยง

type Output = Wrapping<u128>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: u8) -> Wrapping<u128>

Returns self to the power rhs. Read more
Sourceยง

impl Pow<u8> for Wrapping<u16>

Sourceยง

type Output = Wrapping<u16>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: u8) -> Wrapping<u16>

Returns self to the power rhs. Read more
Sourceยง

impl Pow<u8> for Wrapping<u32>

Sourceยง

type Output = Wrapping<u32>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: u8) -> Wrapping<u32>

Returns self to the power rhs. Read more
Sourceยง

impl Pow<u8> for Wrapping<u64>

Sourceยง

type Output = Wrapping<u64>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: u8) -> Wrapping<u64>

Returns self to the power rhs. Read more
Sourceยง

impl Pow<u8> for Wrapping<u8>

Sourceยง

type Output = Wrapping<u8>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: u8) -> Wrapping<u8>

Returns self to the power rhs. Read more
Sourceยง

impl Pow<u8> for Wrapping<usize>

Sourceยง

type Output = Wrapping<usize>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: u8) -> Wrapping<usize>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<usize> for &'a Wrapping<i128>

Sourceยง

type Output = Wrapping<i128>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: usize) -> Wrapping<i128>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<usize> for &'a Wrapping<i16>

Sourceยง

type Output = Wrapping<i16>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: usize) -> Wrapping<i16>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<usize> for &'a Wrapping<i32>

Sourceยง

type Output = Wrapping<i32>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: usize) -> Wrapping<i32>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<usize> for &'a Wrapping<i64>

Sourceยง

type Output = Wrapping<i64>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: usize) -> Wrapping<i64>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<usize> for &'a Wrapping<i8>

Sourceยง

type Output = Wrapping<i8>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: usize) -> Wrapping<i8>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<usize> for &'a Wrapping<isize>

Sourceยง

type Output = Wrapping<isize>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: usize) -> Wrapping<isize>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<usize> for &'a Wrapping<u128>

Sourceยง

type Output = Wrapping<u128>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: usize) -> Wrapping<u128>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<usize> for &'a Wrapping<u16>

Sourceยง

type Output = Wrapping<u16>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: usize) -> Wrapping<u16>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<usize> for &'a Wrapping<u32>

Sourceยง

type Output = Wrapping<u32>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: usize) -> Wrapping<u32>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<usize> for &'a Wrapping<u64>

Sourceยง

type Output = Wrapping<u64>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: usize) -> Wrapping<u64>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<usize> for &'a Wrapping<u8>

Sourceยง

type Output = Wrapping<u8>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: usize) -> Wrapping<u8>

Returns self to the power rhs. Read more
Sourceยง

impl<'a> Pow<usize> for &'a Wrapping<usize>

Sourceยง

type Output = Wrapping<usize>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: usize) -> Wrapping<usize>

Returns self to the power rhs. Read more
Sourceยง

impl Pow<usize> for Wrapping<i128>

Sourceยง

type Output = Wrapping<i128>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: usize) -> Wrapping<i128>

Returns self to the power rhs. Read more
Sourceยง

impl Pow<usize> for Wrapping<i16>

Sourceยง

type Output = Wrapping<i16>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: usize) -> Wrapping<i16>

Returns self to the power rhs. Read more
Sourceยง

impl Pow<usize> for Wrapping<i32>

Sourceยง

type Output = Wrapping<i32>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: usize) -> Wrapping<i32>

Returns self to the power rhs. Read more
Sourceยง

impl Pow<usize> for Wrapping<i64>

Sourceยง

type Output = Wrapping<i64>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: usize) -> Wrapping<i64>

Returns self to the power rhs. Read more
Sourceยง

impl Pow<usize> for Wrapping<i8>

Sourceยง

type Output = Wrapping<i8>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: usize) -> Wrapping<i8>

Returns self to the power rhs. Read more
Sourceยง

impl Pow<usize> for Wrapping<isize>

Sourceยง

type Output = Wrapping<isize>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: usize) -> Wrapping<isize>

Returns self to the power rhs. Read more
Sourceยง

impl Pow<usize> for Wrapping<u128>

Sourceยง

type Output = Wrapping<u128>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: usize) -> Wrapping<u128>

Returns self to the power rhs. Read more
Sourceยง

impl Pow<usize> for Wrapping<u16>

Sourceยง

type Output = Wrapping<u16>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: usize) -> Wrapping<u16>

Returns self to the power rhs. Read more
Sourceยง

impl Pow<usize> for Wrapping<u32>

Sourceยง

type Output = Wrapping<u32>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: usize) -> Wrapping<u32>

Returns self to the power rhs. Read more
Sourceยง

impl Pow<usize> for Wrapping<u64>

Sourceยง

type Output = Wrapping<u64>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: usize) -> Wrapping<u64>

Returns self to the power rhs. Read more
Sourceยง

impl Pow<usize> for Wrapping<u8>

Sourceยง

type Output = Wrapping<u8>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: usize) -> Wrapping<u8>

Returns self to the power rhs. Read more
Sourceยง

impl Pow<usize> for Wrapping<usize>

Sourceยง

type Output = Wrapping<usize>

The result after applying the operator.
Sourceยง

fn pow(self, rhs: usize) -> Wrapping<usize>

Returns self to the power rhs. Read more
1.14.0 ยท Sourceยง

impl<'a> Product<&'a Wrapping<i128>> for Wrapping<i128>

Sourceยง

fn product<I>(iter: I) -> Wrapping<i128>
where I: Iterator<Item = &'a Wrapping<i128>>,

Takes an iterator and generates Self from the elements by multiplying the items.
1.14.0 ยท Sourceยง

impl<'a> Product<&'a Wrapping<i16>> for Wrapping<i16>

Sourceยง

fn product<I>(iter: I) -> Wrapping<i16>
where I: Iterator<Item = &'a Wrapping<i16>>,

Takes an iterator and generates Self from the elements by multiplying the items.
1.14.0 ยท Sourceยง

impl<'a> Product<&'a Wrapping<i32>> for Wrapping<i32>

Sourceยง

fn product<I>(iter: I) -> Wrapping<i32>
where I: Iterator<Item = &'a Wrapping<i32>>,

Takes an iterator and generates Self from the elements by multiplying the items.
1.14.0 ยท Sourceยง

impl<'a> Product<&'a Wrapping<i64>> for Wrapping<i64>

Sourceยง

fn product<I>(iter: I) -> Wrapping<i64>
where I: Iterator<Item = &'a Wrapping<i64>>,

Takes an iterator and generates Self from the elements by multiplying the items.
1.14.0 ยท Sourceยง

impl<'a> Product<&'a Wrapping<i8>> for Wrapping<i8>

Sourceยง

fn product<I>(iter: I) -> Wrapping<i8>
where I: Iterator<Item = &'a Wrapping<i8>>,

Takes an iterator and generates Self from the elements by multiplying the items.
1.14.0 ยท Sourceยง

impl<'a> Product<&'a Wrapping<isize>> for Wrapping<isize>

Sourceยง

fn product<I>(iter: I) -> Wrapping<isize>
where I: Iterator<Item = &'a Wrapping<isize>>,

Takes an iterator and generates Self from the elements by multiplying the items.
1.14.0 ยท Sourceยง

impl<'a> Product<&'a Wrapping<u128>> for Wrapping<u128>

Sourceยง

fn product<I>(iter: I) -> Wrapping<u128>
where I: Iterator<Item = &'a Wrapping<u128>>,

Takes an iterator and generates Self from the elements by multiplying the items.
1.14.0 ยท Sourceยง

impl<'a> Product<&'a Wrapping<u16>> for Wrapping<u16>

Sourceยง

fn product<I>(iter: I) -> Wrapping<u16>
where I: Iterator<Item = &'a Wrapping<u16>>,

Takes an iterator and generates Self from the elements by multiplying the items.
1.14.0 ยท Sourceยง

impl<'a> Product<&'a Wrapping<u32>> for Wrapping<u32>

Sourceยง

fn product<I>(iter: I) -> Wrapping<u32>
where I: Iterator<Item = &'a Wrapping<u32>>,

Takes an iterator and generates Self from the elements by multiplying the items.
1.14.0 ยท Sourceยง

impl<'a> Product<&'a Wrapping<u64>> for Wrapping<u64>

Sourceยง

fn product<I>(iter: I) -> Wrapping<u64>
where I: Iterator<Item = &'a Wrapping<u64>>,

Takes an iterator and generates Self from the elements by multiplying the items.
1.14.0 ยท Sourceยง

impl<'a> Product<&'a Wrapping<u8>> for Wrapping<u8>

Sourceยง

fn product<I>(iter: I) -> Wrapping<u8>
where I: Iterator<Item = &'a Wrapping<u8>>,

Takes an iterator and generates Self from the elements by multiplying the items.
1.14.0 ยท Sourceยง

impl<'a> Product<&'a Wrapping<usize>> for Wrapping<usize>

Sourceยง

fn product<I>(iter: I) -> Wrapping<usize>
where I: Iterator<Item = &'a Wrapping<usize>>,

Takes an iterator and generates Self from the elements by multiplying the items.
1.14.0 ยท Sourceยง

impl Product for Wrapping<i128>

Sourceยง

fn product<I>(iter: I) -> Wrapping<i128>
where I: Iterator<Item = Wrapping<i128>>,

Takes an iterator and generates Self from the elements by multiplying the items.
1.14.0 ยท Sourceยง

impl Product for Wrapping<i16>

Sourceยง

fn product<I>(iter: I) -> Wrapping<i16>
where I: Iterator<Item = Wrapping<i16>>,

Takes an iterator and generates Self from the elements by multiplying the items.
1.14.0 ยท Sourceยง

impl Product for Wrapping<i32>

Sourceยง

fn product<I>(iter: I) -> Wrapping<i32>
where I: Iterator<Item = Wrapping<i32>>,

Takes an iterator and generates Self from the elements by multiplying the items.
1.14.0 ยท Sourceยง

impl Product for Wrapping<i64>

Sourceยง

fn product<I>(iter: I) -> Wrapping<i64>
where I: Iterator<Item = Wrapping<i64>>,

Takes an iterator and generates Self from the elements by multiplying the items.
1.14.0 ยท Sourceยง

impl Product for Wrapping<i8>

Sourceยง

fn product<I>(iter: I) -> Wrapping<i8>
where I: Iterator<Item = Wrapping<i8>>,

Takes an iterator and generates Self from the elements by multiplying the items.
1.14.0 ยท Sourceยง

impl Product for Wrapping<isize>

Sourceยง

fn product<I>(iter: I) -> Wrapping<isize>
where I: Iterator<Item = Wrapping<isize>>,

Takes an iterator and generates Self from the elements by multiplying the items.
1.14.0 ยท Sourceยง

impl Product for Wrapping<u128>

Sourceยง

fn product<I>(iter: I) -> Wrapping<u128>
where I: Iterator<Item = Wrapping<u128>>,

Takes an iterator and generates Self from the elements by multiplying the items.
1.14.0 ยท Sourceยง

impl Product for Wrapping<u16>

Sourceยง

fn product<I>(iter: I) -> Wrapping<u16>
where I: Iterator<Item = Wrapping<u16>>,

Takes an iterator and generates Self from the elements by multiplying the items.
1.14.0 ยท Sourceยง

impl Product for Wrapping<u32>

Sourceยง

fn product<I>(iter: I) -> Wrapping<u32>
where I: Iterator<Item = Wrapping<u32>>,

Takes an iterator and generates Self from the elements by multiplying the items.
1.14.0 ยท Sourceยง

impl Product for Wrapping<u64>

Sourceยง

fn product<I>(iter: I) -> Wrapping<u64>
where I: Iterator<Item = Wrapping<u64>>,

Takes an iterator and generates Self from the elements by multiplying the items.
1.14.0 ยท Sourceยง

impl Product for Wrapping<u8>

Sourceยง

fn product<I>(iter: I) -> Wrapping<u8>
where I: Iterator<Item = Wrapping<u8>>,

Takes an iterator and generates Self from the elements by multiplying the items.
1.14.0 ยท Sourceยง

impl Product for Wrapping<usize>

Sourceยง

fn product<I>(iter: I) -> Wrapping<usize>
where I: Iterator<Item = Wrapping<usize>>,

Takes an iterator and generates Self from the elements by multiplying the items.
1.14.0 ยท Sourceยง

impl Rem<&Wrapping<i128>> for &Wrapping<i128>

Sourceยง

type Output = <Wrapping<i128> as Rem>::Output

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: &Wrapping<i128>) -> <Wrapping<i128> as Rem>::Output

Performs the % operation. Read more
1.14.0 ยท Sourceยง

impl Rem<&Wrapping<i128>> for Wrapping<i128>

Sourceยง

type Output = <Wrapping<i128> as Rem>::Output

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: &Wrapping<i128>) -> <Wrapping<i128> as Rem>::Output

Performs the % operation. Read more
1.14.0 ยท Sourceยง

impl Rem<&Wrapping<i16>> for &Wrapping<i16>

Sourceยง

type Output = <Wrapping<i16> as Rem>::Output

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: &Wrapping<i16>) -> <Wrapping<i16> as Rem>::Output

Performs the % operation. Read more
1.14.0 ยท Sourceยง

impl Rem<&Wrapping<i16>> for Wrapping<i16>

Sourceยง

type Output = <Wrapping<i16> as Rem>::Output

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: &Wrapping<i16>) -> <Wrapping<i16> as Rem>::Output

Performs the % operation. Read more
1.14.0 ยท Sourceยง

impl Rem<&Wrapping<i32>> for &Wrapping<i32>

Sourceยง

type Output = <Wrapping<i32> as Rem>::Output

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: &Wrapping<i32>) -> <Wrapping<i32> as Rem>::Output

Performs the % operation. Read more
1.14.0 ยท Sourceยง

impl Rem<&Wrapping<i32>> for Wrapping<i32>

Sourceยง

type Output = <Wrapping<i32> as Rem>::Output

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: &Wrapping<i32>) -> <Wrapping<i32> as Rem>::Output

Performs the % operation. Read more
1.14.0 ยท Sourceยง

impl Rem<&Wrapping<i64>> for &Wrapping<i64>

Sourceยง

type Output = <Wrapping<i64> as Rem>::Output

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: &Wrapping<i64>) -> <Wrapping<i64> as Rem>::Output

Performs the % operation. Read more
1.14.0 ยท Sourceยง

impl Rem<&Wrapping<i64>> for Wrapping<i64>

Sourceยง

type Output = <Wrapping<i64> as Rem>::Output

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: &Wrapping<i64>) -> <Wrapping<i64> as Rem>::Output

Performs the % operation. Read more
1.14.0 ยท Sourceยง

impl Rem<&Wrapping<i8>> for &Wrapping<i8>

Sourceยง

type Output = <Wrapping<i8> as Rem>::Output

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: &Wrapping<i8>) -> <Wrapping<i8> as Rem>::Output

Performs the % operation. Read more
1.14.0 ยท Sourceยง

impl Rem<&Wrapping<i8>> for Wrapping<i8>

Sourceยง

type Output = <Wrapping<i8> as Rem>::Output

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: &Wrapping<i8>) -> <Wrapping<i8> as Rem>::Output

Performs the % operation. Read more
1.14.0 ยท Sourceยง

impl Rem<&Wrapping<isize>> for &Wrapping<isize>

Sourceยง

type Output = <Wrapping<isize> as Rem>::Output

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: &Wrapping<isize>) -> <Wrapping<isize> as Rem>::Output

Performs the % operation. Read more
1.14.0 ยท Sourceยง

impl Rem<&Wrapping<isize>> for Wrapping<isize>

Sourceยง

type Output = <Wrapping<isize> as Rem>::Output

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: &Wrapping<isize>) -> <Wrapping<isize> as Rem>::Output

Performs the % operation. Read more
1.14.0 ยท Sourceยง

impl Rem<&Wrapping<u128>> for &Wrapping<u128>

Sourceยง

type Output = <Wrapping<u128> as Rem>::Output

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: &Wrapping<u128>) -> <Wrapping<u128> as Rem>::Output

Performs the % operation. Read more
1.14.0 ยท Sourceยง

impl Rem<&Wrapping<u128>> for Wrapping<u128>

Sourceยง

type Output = <Wrapping<u128> as Rem>::Output

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: &Wrapping<u128>) -> <Wrapping<u128> as Rem>::Output

Performs the % operation. Read more
1.14.0 ยท Sourceยง

impl Rem<&Wrapping<u16>> for &Wrapping<u16>

Sourceยง

type Output = <Wrapping<u16> as Rem>::Output

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: &Wrapping<u16>) -> <Wrapping<u16> as Rem>::Output

Performs the % operation. Read more
1.14.0 ยท Sourceยง

impl Rem<&Wrapping<u16>> for Wrapping<u16>

Sourceยง

type Output = <Wrapping<u16> as Rem>::Output

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: &Wrapping<u16>) -> <Wrapping<u16> as Rem>::Output

Performs the % operation. Read more
1.14.0 ยท Sourceยง

impl Rem<&Wrapping<u32>> for &Wrapping<u32>

Sourceยง

type Output = <Wrapping<u32> as Rem>::Output

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: &Wrapping<u32>) -> <Wrapping<u32> as Rem>::Output

Performs the % operation. Read more
1.14.0 ยท Sourceยง

impl Rem<&Wrapping<u32>> for Wrapping<u32>

Sourceยง

type Output = <Wrapping<u32> as Rem>::Output

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: &Wrapping<u32>) -> <Wrapping<u32> as Rem>::Output

Performs the % operation. Read more
1.14.0 ยท Sourceยง

impl Rem<&Wrapping<u64>> for &Wrapping<u64>

Sourceยง

type Output = <Wrapping<u64> as Rem>::Output

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: &Wrapping<u64>) -> <Wrapping<u64> as Rem>::Output

Performs the % operation. Read more
1.14.0 ยท Sourceยง

impl Rem<&Wrapping<u64>> for Wrapping<u64>

Sourceยง

type Output = <Wrapping<u64> as Rem>::Output

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: &Wrapping<u64>) -> <Wrapping<u64> as Rem>::Output

Performs the % operation. Read more
1.14.0 ยท Sourceยง

impl Rem<&Wrapping<u8>> for &Wrapping<u8>

Sourceยง

type Output = <Wrapping<u8> as Rem>::Output

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: &Wrapping<u8>) -> <Wrapping<u8> as Rem>::Output

Performs the % operation. Read more
1.14.0 ยท Sourceยง

impl Rem<&Wrapping<u8>> for Wrapping<u8>

Sourceยง

type Output = <Wrapping<u8> as Rem>::Output

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: &Wrapping<u8>) -> <Wrapping<u8> as Rem>::Output

Performs the % operation. Read more
1.14.0 ยท Sourceยง

impl Rem<&Wrapping<usize>> for &Wrapping<usize>

Sourceยง

type Output = <Wrapping<usize> as Rem>::Output

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: &Wrapping<usize>) -> <Wrapping<usize> as Rem>::Output

Performs the % operation. Read more
1.14.0 ยท Sourceยง

impl Rem<&Wrapping<usize>> for Wrapping<usize>

Sourceยง

type Output = <Wrapping<usize> as Rem>::Output

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: &Wrapping<usize>) -> <Wrapping<usize> as Rem>::Output

Performs the % operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<i128> as Rem>::Output

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: Wrapping<i128>) -> <Wrapping<i128> as Rem>::Output

Performs the % operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<i16> as Rem>::Output

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: Wrapping<i16>) -> <Wrapping<i16> as Rem>::Output

Performs the % operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<i32> as Rem>::Output

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: Wrapping<i32>) -> <Wrapping<i32> as Rem>::Output

Performs the % operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<i64> as Rem>::Output

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: Wrapping<i64>) -> <Wrapping<i64> as Rem>::Output

Performs the % operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<i8> as Rem>::Output

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: Wrapping<i8>) -> <Wrapping<i8> as Rem>::Output

Performs the % operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<isize> as Rem>::Output

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: Wrapping<isize>) -> <Wrapping<isize> as Rem>::Output

Performs the % operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<u128> as Rem>::Output

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: Wrapping<u128>) -> <Wrapping<u128> as Rem>::Output

Performs the % operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<u16> as Rem>::Output

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: Wrapping<u16>) -> <Wrapping<u16> as Rem>::Output

Performs the % operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<u32> as Rem>::Output

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: Wrapping<u32>) -> <Wrapping<u32> as Rem>::Output

Performs the % operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<u64> as Rem>::Output

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: Wrapping<u64>) -> <Wrapping<u64> as Rem>::Output

Performs the % operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<u8> as Rem>::Output

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: Wrapping<u8>) -> <Wrapping<u8> as Rem>::Output

Performs the % operation. Read more
1.14.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<usize> as Rem>::Output

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: Wrapping<usize>) -> <Wrapping<usize> as Rem>::Output

Performs the % operation. Read more
1.7.0 ยท Sourceยง

impl Rem for Wrapping<i128>

Sourceยง

type Output = Wrapping<i128>

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: Wrapping<i128>) -> Wrapping<i128>

Performs the % operation. Read more
1.7.0 ยท Sourceยง

impl Rem for Wrapping<i16>

Sourceยง

type Output = Wrapping<i16>

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: Wrapping<i16>) -> Wrapping<i16>

Performs the % operation. Read more
1.7.0 ยท Sourceยง

impl Rem for Wrapping<i32>

Sourceยง

type Output = Wrapping<i32>

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: Wrapping<i32>) -> Wrapping<i32>

Performs the % operation. Read more
1.7.0 ยท Sourceยง

impl Rem for Wrapping<i64>

Sourceยง

type Output = Wrapping<i64>

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: Wrapping<i64>) -> Wrapping<i64>

Performs the % operation. Read more
1.7.0 ยท Sourceยง

impl Rem for Wrapping<i8>

Sourceยง

type Output = Wrapping<i8>

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: Wrapping<i8>) -> Wrapping<i8>

Performs the % operation. Read more
1.7.0 ยท Sourceยง

impl Rem for Wrapping<isize>

Sourceยง

type Output = Wrapping<isize>

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: Wrapping<isize>) -> Wrapping<isize>

Performs the % operation. Read more
1.7.0 ยท Sourceยง

impl Rem for Wrapping<u128>

Sourceยง

type Output = Wrapping<u128>

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: Wrapping<u128>) -> Wrapping<u128>

Performs the % operation. Read more
1.7.0 ยท Sourceยง

impl Rem for Wrapping<u16>

Sourceยง

type Output = Wrapping<u16>

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: Wrapping<u16>) -> Wrapping<u16>

Performs the % operation. Read more
1.7.0 ยท Sourceยง

impl Rem for Wrapping<u32>

Sourceยง

type Output = Wrapping<u32>

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: Wrapping<u32>) -> Wrapping<u32>

Performs the % operation. Read more
1.7.0 ยท Sourceยง

impl Rem for Wrapping<u64>

Sourceยง

type Output = Wrapping<u64>

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: Wrapping<u64>) -> Wrapping<u64>

Performs the % operation. Read more
1.7.0 ยท Sourceยง

impl Rem for Wrapping<u8>

Sourceยง

type Output = Wrapping<u8>

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: Wrapping<u8>) -> Wrapping<u8>

Performs the % operation. Read more
1.7.0 ยท Sourceยง

impl Rem for Wrapping<usize>

Sourceยง

type Output = Wrapping<usize>

The resulting type after applying the % operator.
Sourceยง

fn rem(self, other: Wrapping<usize>) -> Wrapping<usize>

Performs the % operation. Read more
1.22.0 ยท Sourceยง

impl RemAssign<&Wrapping<i128>> for Wrapping<i128>

Sourceยง

fn rem_assign(&mut self, other: &Wrapping<i128>)

Performs the %= operation. Read more
1.22.0 ยท Sourceยง

impl RemAssign<&Wrapping<i16>> for Wrapping<i16>

Sourceยง

fn rem_assign(&mut self, other: &Wrapping<i16>)

Performs the %= operation. Read more
1.22.0 ยท Sourceยง

impl RemAssign<&Wrapping<i32>> for Wrapping<i32>

Sourceยง

fn rem_assign(&mut self, other: &Wrapping<i32>)

Performs the %= operation. Read more
1.22.0 ยท Sourceยง

impl RemAssign<&Wrapping<i64>> for Wrapping<i64>

Sourceยง

fn rem_assign(&mut self, other: &Wrapping<i64>)

Performs the %= operation. Read more
1.22.0 ยท Sourceยง

impl RemAssign<&Wrapping<i8>> for Wrapping<i8>

Sourceยง

fn rem_assign(&mut self, other: &Wrapping<i8>)

Performs the %= operation. Read more
1.22.0 ยท Sourceยง

impl RemAssign<&Wrapping<isize>> for Wrapping<isize>

Sourceยง

fn rem_assign(&mut self, other: &Wrapping<isize>)

Performs the %= operation. Read more
1.22.0 ยท Sourceยง

impl RemAssign<&Wrapping<u128>> for Wrapping<u128>

Sourceยง

fn rem_assign(&mut self, other: &Wrapping<u128>)

Performs the %= operation. Read more
1.22.0 ยท Sourceยง

impl RemAssign<&Wrapping<u16>> for Wrapping<u16>

Sourceยง

fn rem_assign(&mut self, other: &Wrapping<u16>)

Performs the %= operation. Read more
1.22.0 ยท Sourceยง

impl RemAssign<&Wrapping<u32>> for Wrapping<u32>

Sourceยง

fn rem_assign(&mut self, other: &Wrapping<u32>)

Performs the %= operation. Read more
1.22.0 ยท Sourceยง

impl RemAssign<&Wrapping<u64>> for Wrapping<u64>

Sourceยง

fn rem_assign(&mut self, other: &Wrapping<u64>)

Performs the %= operation. Read more
1.22.0 ยท Sourceยง

impl RemAssign<&Wrapping<u8>> for Wrapping<u8>

Sourceยง

fn rem_assign(&mut self, other: &Wrapping<u8>)

Performs the %= operation. Read more
1.22.0 ยท Sourceยง

impl RemAssign<&Wrapping<usize>> for Wrapping<usize>

Sourceยง

fn rem_assign(&mut self, other: &Wrapping<usize>)

Performs the %= operation. Read more
1.22.0 ยท Sourceยง

impl RemAssign<&i128> for Wrapping<i128>

Sourceยง

fn rem_assign(&mut self, other: &i128)

Performs the %= operation. Read more
1.22.0 ยท Sourceยง

impl RemAssign<&i16> for Wrapping<i16>

Sourceยง

fn rem_assign(&mut self, other: &i16)

Performs the %= operation. Read more
1.22.0 ยท Sourceยง

impl RemAssign<&i32> for Wrapping<i32>

Sourceยง

fn rem_assign(&mut self, other: &i32)

Performs the %= operation. Read more
1.22.0 ยท Sourceยง

impl RemAssign<&i64> for Wrapping<i64>

Sourceยง

fn rem_assign(&mut self, other: &i64)

Performs the %= operation. Read more
1.22.0 ยท Sourceยง

impl RemAssign<&i8> for Wrapping<i8>

Sourceยง

fn rem_assign(&mut self, other: &i8)

Performs the %= operation. Read more
1.22.0 ยท Sourceยง

impl RemAssign<&isize> for Wrapping<isize>

Sourceยง

fn rem_assign(&mut self, other: &isize)

Performs the %= operation. Read more
1.22.0 ยท Sourceยง

impl RemAssign<&u128> for Wrapping<u128>

Sourceยง

fn rem_assign(&mut self, other: &u128)

Performs the %= operation. Read more
1.22.0 ยท Sourceยง

impl RemAssign<&u16> for Wrapping<u16>

Sourceยง

fn rem_assign(&mut self, other: &u16)

Performs the %= operation. Read more
1.22.0 ยท Sourceยง

impl RemAssign<&u32> for Wrapping<u32>

Sourceยง

fn rem_assign(&mut self, other: &u32)

Performs the %= operation. Read more
1.22.0 ยท Sourceยง

impl RemAssign<&u64> for Wrapping<u64>

Sourceยง

fn rem_assign(&mut self, other: &u64)

Performs the %= operation. Read more
1.22.0 ยท Sourceยง

impl RemAssign<&u8> for Wrapping<u8>

Sourceยง

fn rem_assign(&mut self, other: &u8)

Performs the %= operation. Read more
1.22.0 ยท Sourceยง

impl RemAssign<&usize> for Wrapping<usize>

Sourceยง

fn rem_assign(&mut self, other: &usize)

Performs the %= operation. Read more
1.60.0 ยท Sourceยง

impl RemAssign<i128> for Wrapping<i128>

Sourceยง

fn rem_assign(&mut self, other: i128)

Performs the %= operation. Read more
1.60.0 ยท Sourceยง

impl RemAssign<i16> for Wrapping<i16>

Sourceยง

fn rem_assign(&mut self, other: i16)

Performs the %= operation. Read more
1.60.0 ยท Sourceยง

impl RemAssign<i32> for Wrapping<i32>

Sourceยง

fn rem_assign(&mut self, other: i32)

Performs the %= operation. Read more
1.60.0 ยท Sourceยง

impl RemAssign<i64> for Wrapping<i64>

Sourceยง

fn rem_assign(&mut self, other: i64)

Performs the %= operation. Read more
1.60.0 ยท Sourceยง

impl RemAssign<i8> for Wrapping<i8>

Sourceยง

fn rem_assign(&mut self, other: i8)

Performs the %= operation. Read more
1.60.0 ยท Sourceยง

impl RemAssign<isize> for Wrapping<isize>

Sourceยง

fn rem_assign(&mut self, other: isize)

Performs the %= operation. Read more
1.60.0 ยท Sourceยง

impl RemAssign<u128> for Wrapping<u128>

Sourceยง

fn rem_assign(&mut self, other: u128)

Performs the %= operation. Read more
1.60.0 ยท Sourceยง

impl RemAssign<u16> for Wrapping<u16>

Sourceยง

fn rem_assign(&mut self, other: u16)

Performs the %= operation. Read more
1.60.0 ยท Sourceยง

impl RemAssign<u32> for Wrapping<u32>

Sourceยง

fn rem_assign(&mut self, other: u32)

Performs the %= operation. Read more
1.60.0 ยท Sourceยง

impl RemAssign<u64> for Wrapping<u64>

Sourceยง

fn rem_assign(&mut self, other: u64)

Performs the %= operation. Read more
1.60.0 ยท Sourceยง

impl RemAssign<u8> for Wrapping<u8>

Sourceยง

fn rem_assign(&mut self, other: u8)

Performs the %= operation. Read more
1.60.0 ยท Sourceยง

impl RemAssign<usize> for Wrapping<usize>

Sourceยง

fn rem_assign(&mut self, other: usize)

Performs the %= operation. Read more
1.8.0 ยท Sourceยง

impl RemAssign for Wrapping<i128>

Sourceยง

fn rem_assign(&mut self, other: Wrapping<i128>)

Performs the %= operation. Read more
1.8.0 ยท Sourceยง

impl RemAssign for Wrapping<i16>

Sourceยง

fn rem_assign(&mut self, other: Wrapping<i16>)

Performs the %= operation. Read more
1.8.0 ยท Sourceยง

impl RemAssign for Wrapping<i32>

Sourceยง

fn rem_assign(&mut self, other: Wrapping<i32>)

Performs the %= operation. Read more
1.8.0 ยท Sourceยง

impl RemAssign for Wrapping<i64>

Sourceยง

fn rem_assign(&mut self, other: Wrapping<i64>)

Performs the %= operation. Read more
1.8.0 ยท Sourceยง

impl RemAssign for Wrapping<i8>

Sourceยง

fn rem_assign(&mut self, other: Wrapping<i8>)

Performs the %= operation. Read more
1.8.0 ยท Sourceยง

impl RemAssign for Wrapping<isize>

Sourceยง

fn rem_assign(&mut self, other: Wrapping<isize>)

Performs the %= operation. Read more
1.8.0 ยท Sourceยง

impl RemAssign for Wrapping<u128>

Sourceยง

fn rem_assign(&mut self, other: Wrapping<u128>)

Performs the %= operation. Read more
1.8.0 ยท Sourceยง

impl RemAssign for Wrapping<u16>

Sourceยง

fn rem_assign(&mut self, other: Wrapping<u16>)

Performs the %= operation. Read more
1.8.0 ยท Sourceยง

impl RemAssign for Wrapping<u32>

Sourceยง

fn rem_assign(&mut self, other: Wrapping<u32>)

Performs the %= operation. Read more
1.8.0 ยท Sourceยง

impl RemAssign for Wrapping<u64>

Sourceยง

fn rem_assign(&mut self, other: Wrapping<u64>)

Performs the %= operation. Read more
1.8.0 ยท Sourceยง

impl RemAssign for Wrapping<u8>

Sourceยง

fn rem_assign(&mut self, other: Wrapping<u8>)

Performs the %= operation. Read more
1.8.0 ยท Sourceยง

impl RemAssign for Wrapping<usize>

Sourceยง

fn rem_assign(&mut self, other: Wrapping<usize>)

Performs the %= operation. Read more
Sourceยง

impl<T> Serialize for Wrapping<T>
where T: Serialize,

Sourceยง

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

Serialize this value into the given Serde serializer. Read more
1.39.0 ยท Sourceยง

impl Shl<&usize> for &Wrapping<i128>

Sourceยง

type Output = <Wrapping<i128> as Shl<usize>>::Output

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: &usize) -> <Wrapping<i128> as Shl<usize>>::Output

Performs the << operation. Read more
1.39.0 ยท Sourceยง

impl Shl<&usize> for &Wrapping<i16>

Sourceยง

type Output = <Wrapping<i16> as Shl<usize>>::Output

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: &usize) -> <Wrapping<i16> as Shl<usize>>::Output

Performs the << operation. Read more
1.39.0 ยท Sourceยง

impl Shl<&usize> for &Wrapping<i32>

Sourceยง

type Output = <Wrapping<i32> as Shl<usize>>::Output

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: &usize) -> <Wrapping<i32> as Shl<usize>>::Output

Performs the << operation. Read more
1.39.0 ยท Sourceยง

impl Shl<&usize> for &Wrapping<i64>

Sourceยง

type Output = <Wrapping<i64> as Shl<usize>>::Output

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: &usize) -> <Wrapping<i64> as Shl<usize>>::Output

Performs the << operation. Read more
1.39.0 ยท Sourceยง

impl Shl<&usize> for &Wrapping<i8>

Sourceยง

type Output = <Wrapping<i8> as Shl<usize>>::Output

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: &usize) -> <Wrapping<i8> as Shl<usize>>::Output

Performs the << operation. Read more
1.39.0 ยท Sourceยง

impl Shl<&usize> for &Wrapping<isize>

Sourceยง

type Output = <Wrapping<isize> as Shl<usize>>::Output

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: &usize) -> <Wrapping<isize> as Shl<usize>>::Output

Performs the << operation. Read more
1.39.0 ยท Sourceยง

impl Shl<&usize> for &Wrapping<u128>

Sourceยง

type Output = <Wrapping<u128> as Shl<usize>>::Output

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: &usize) -> <Wrapping<u128> as Shl<usize>>::Output

Performs the << operation. Read more
1.39.0 ยท Sourceยง

impl Shl<&usize> for &Wrapping<u16>

Sourceยง

type Output = <Wrapping<u16> as Shl<usize>>::Output

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: &usize) -> <Wrapping<u16> as Shl<usize>>::Output

Performs the << operation. Read more
1.39.0 ยท Sourceยง

impl Shl<&usize> for &Wrapping<u32>

Sourceยง

type Output = <Wrapping<u32> as Shl<usize>>::Output

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: &usize) -> <Wrapping<u32> as Shl<usize>>::Output

Performs the << operation. Read more
1.39.0 ยท Sourceยง

impl Shl<&usize> for &Wrapping<u64>

Sourceยง

type Output = <Wrapping<u64> as Shl<usize>>::Output

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: &usize) -> <Wrapping<u64> as Shl<usize>>::Output

Performs the << operation. Read more
1.39.0 ยท Sourceยง

impl Shl<&usize> for &Wrapping<u8>

Sourceยง

type Output = <Wrapping<u8> as Shl<usize>>::Output

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: &usize) -> <Wrapping<u8> as Shl<usize>>::Output

Performs the << operation. Read more
1.39.0 ยท Sourceยง

impl Shl<&usize> for &Wrapping<usize>

Sourceยง

type Output = <Wrapping<usize> as Shl<usize>>::Output

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: &usize) -> <Wrapping<usize> as Shl<usize>>::Output

Performs the << operation. Read more
1.39.0 ยท Sourceยง

impl Shl<&usize> for Wrapping<i128>

Sourceยง

type Output = <Wrapping<i128> as Shl<usize>>::Output

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: &usize) -> <Wrapping<i128> as Shl<usize>>::Output

Performs the << operation. Read more
1.39.0 ยท Sourceยง

impl Shl<&usize> for Wrapping<i16>

Sourceยง

type Output = <Wrapping<i16> as Shl<usize>>::Output

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: &usize) -> <Wrapping<i16> as Shl<usize>>::Output

Performs the << operation. Read more
1.39.0 ยท Sourceยง

impl Shl<&usize> for Wrapping<i32>

Sourceยง

type Output = <Wrapping<i32> as Shl<usize>>::Output

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: &usize) -> <Wrapping<i32> as Shl<usize>>::Output

Performs the << operation. Read more
1.39.0 ยท Sourceยง

impl Shl<&usize> for Wrapping<i64>

Sourceยง

type Output = <Wrapping<i64> as Shl<usize>>::Output

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: &usize) -> <Wrapping<i64> as Shl<usize>>::Output

Performs the << operation. Read more
1.39.0 ยท Sourceยง

impl Shl<&usize> for Wrapping<i8>

Sourceยง

type Output = <Wrapping<i8> as Shl<usize>>::Output

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: &usize) -> <Wrapping<i8> as Shl<usize>>::Output

Performs the << operation. Read more
1.39.0 ยท Sourceยง

impl Shl<&usize> for Wrapping<isize>

Sourceยง

type Output = <Wrapping<isize> as Shl<usize>>::Output

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: &usize) -> <Wrapping<isize> as Shl<usize>>::Output

Performs the << operation. Read more
1.39.0 ยท Sourceยง

impl Shl<&usize> for Wrapping<u128>

Sourceยง

type Output = <Wrapping<u128> as Shl<usize>>::Output

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: &usize) -> <Wrapping<u128> as Shl<usize>>::Output

Performs the << operation. Read more
1.39.0 ยท Sourceยง

impl Shl<&usize> for Wrapping<u16>

Sourceยง

type Output = <Wrapping<u16> as Shl<usize>>::Output

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: &usize) -> <Wrapping<u16> as Shl<usize>>::Output

Performs the << operation. Read more
1.39.0 ยท Sourceยง

impl Shl<&usize> for Wrapping<u32>

Sourceยง

type Output = <Wrapping<u32> as Shl<usize>>::Output

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: &usize) -> <Wrapping<u32> as Shl<usize>>::Output

Performs the << operation. Read more
1.39.0 ยท Sourceยง

impl Shl<&usize> for Wrapping<u64>

Sourceยง

type Output = <Wrapping<u64> as Shl<usize>>::Output

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: &usize) -> <Wrapping<u64> as Shl<usize>>::Output

Performs the << operation. Read more
1.39.0 ยท Sourceยง

impl Shl<&usize> for Wrapping<u8>

Sourceยง

type Output = <Wrapping<u8> as Shl<usize>>::Output

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: &usize) -> <Wrapping<u8> as Shl<usize>>::Output

Performs the << operation. Read more
1.39.0 ยท Sourceยง

impl Shl<&usize> for Wrapping<usize>

Sourceยง

type Output = <Wrapping<usize> as Shl<usize>>::Output

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: &usize) -> <Wrapping<usize> as Shl<usize>>::Output

Performs the << operation. Read more
1.39.0 ยท Sourceยง

impl<'a> Shl<usize> for &'a Wrapping<i128>

Sourceยง

type Output = <Wrapping<i128> as Shl<usize>>::Output

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: usize) -> <Wrapping<i128> as Shl<usize>>::Output

Performs the << operation. Read more
1.39.0 ยท Sourceยง

impl<'a> Shl<usize> for &'a Wrapping<i16>

Sourceยง

type Output = <Wrapping<i16> as Shl<usize>>::Output

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: usize) -> <Wrapping<i16> as Shl<usize>>::Output

Performs the << operation. Read more
1.39.0 ยท Sourceยง

impl<'a> Shl<usize> for &'a Wrapping<i32>

Sourceยง

type Output = <Wrapping<i32> as Shl<usize>>::Output

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: usize) -> <Wrapping<i32> as Shl<usize>>::Output

Performs the << operation. Read more
1.39.0 ยท Sourceยง

impl<'a> Shl<usize> for &'a Wrapping<i64>

Sourceยง

type Output = <Wrapping<i64> as Shl<usize>>::Output

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: usize) -> <Wrapping<i64> as Shl<usize>>::Output

Performs the << operation. Read more
1.39.0 ยท Sourceยง

impl<'a> Shl<usize> for &'a Wrapping<i8>

Sourceยง

type Output = <Wrapping<i8> as Shl<usize>>::Output

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: usize) -> <Wrapping<i8> as Shl<usize>>::Output

Performs the << operation. Read more
1.39.0 ยท Sourceยง

impl<'a> Shl<usize> for &'a Wrapping<isize>

Sourceยง

type Output = <Wrapping<isize> as Shl<usize>>::Output

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: usize) -> <Wrapping<isize> as Shl<usize>>::Output

Performs the << operation. Read more
1.39.0 ยท Sourceยง

impl<'a> Shl<usize> for &'a Wrapping<u128>

Sourceยง

type Output = <Wrapping<u128> as Shl<usize>>::Output

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: usize) -> <Wrapping<u128> as Shl<usize>>::Output

Performs the << operation. Read more
1.39.0 ยท Sourceยง

impl<'a> Shl<usize> for &'a Wrapping<u16>

Sourceยง

type Output = <Wrapping<u16> as Shl<usize>>::Output

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: usize) -> <Wrapping<u16> as Shl<usize>>::Output

Performs the << operation. Read more
1.39.0 ยท Sourceยง

impl<'a> Shl<usize> for &'a Wrapping<u32>

Sourceยง

type Output = <Wrapping<u32> as Shl<usize>>::Output

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: usize) -> <Wrapping<u32> as Shl<usize>>::Output

Performs the << operation. Read more
1.39.0 ยท Sourceยง

impl<'a> Shl<usize> for &'a Wrapping<u64>

Sourceยง

type Output = <Wrapping<u64> as Shl<usize>>::Output

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: usize) -> <Wrapping<u64> as Shl<usize>>::Output

Performs the << operation. Read more
1.39.0 ยท Sourceยง

impl<'a> Shl<usize> for &'a Wrapping<u8>

Sourceยง

type Output = <Wrapping<u8> as Shl<usize>>::Output

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: usize) -> <Wrapping<u8> as Shl<usize>>::Output

Performs the << operation. Read more
1.39.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<usize> as Shl<usize>>::Output

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: usize) -> <Wrapping<usize> as Shl<usize>>::Output

Performs the << operation. Read more
1.0.0 ยท Sourceยง

impl Shl<usize> for Wrapping<i128>

Sourceยง

type Output = Wrapping<i128>

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: usize) -> Wrapping<i128>

Performs the << operation. Read more
1.0.0 ยท Sourceยง

impl Shl<usize> for Wrapping<i16>

Sourceยง

type Output = Wrapping<i16>

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: usize) -> Wrapping<i16>

Performs the << operation. Read more
1.0.0 ยท Sourceยง

impl Shl<usize> for Wrapping<i32>

Sourceยง

type Output = Wrapping<i32>

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: usize) -> Wrapping<i32>

Performs the << operation. Read more
1.0.0 ยท Sourceยง

impl Shl<usize> for Wrapping<i64>

Sourceยง

type Output = Wrapping<i64>

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: usize) -> Wrapping<i64>

Performs the << operation. Read more
1.0.0 ยท Sourceยง

impl Shl<usize> for Wrapping<i8>

Sourceยง

type Output = Wrapping<i8>

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: usize) -> Wrapping<i8>

Performs the << operation. Read more
1.0.0 ยท Sourceยง

impl Shl<usize> for Wrapping<isize>

Sourceยง

type Output = Wrapping<isize>

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: usize) -> Wrapping<isize>

Performs the << operation. Read more
1.0.0 ยท Sourceยง

impl Shl<usize> for Wrapping<u128>

Sourceยง

type Output = Wrapping<u128>

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: usize) -> Wrapping<u128>

Performs the << operation. Read more
1.0.0 ยท Sourceยง

impl Shl<usize> for Wrapping<u16>

Sourceยง

type Output = Wrapping<u16>

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: usize) -> Wrapping<u16>

Performs the << operation. Read more
1.0.0 ยท Sourceยง

impl Shl<usize> for Wrapping<u32>

Sourceยง

type Output = Wrapping<u32>

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: usize) -> Wrapping<u32>

Performs the << operation. Read more
1.0.0 ยท Sourceยง

impl Shl<usize> for Wrapping<u64>

Sourceยง

type Output = Wrapping<u64>

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: usize) -> Wrapping<u64>

Performs the << operation. Read more
1.0.0 ยท Sourceยง

impl Shl<usize> for Wrapping<u8>

Sourceยง

type Output = Wrapping<u8>

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: usize) -> Wrapping<u8>

Performs the << operation. Read more
1.0.0 ยท Sourceยง

impl Shl<usize> for Wrapping<usize>

Sourceยง

type Output = Wrapping<usize>

The resulting type after applying the << operator.
Sourceยง

fn shl(self, other: usize) -> Wrapping<usize>

Performs the << operation. Read more
1.22.0 ยท Sourceยง

impl ShlAssign<&usize> for Wrapping<i128>

Sourceยง

fn shl_assign(&mut self, other: &usize)

Performs the <<= operation. Read more
1.22.0 ยท Sourceยง

impl ShlAssign<&usize> for Wrapping<i16>

Sourceยง

fn shl_assign(&mut self, other: &usize)

Performs the <<= operation. Read more
1.22.0 ยท Sourceยง

impl ShlAssign<&usize> for Wrapping<i32>

Sourceยง

fn shl_assign(&mut self, other: &usize)

Performs the <<= operation. Read more
1.22.0 ยท Sourceยง

impl ShlAssign<&usize> for Wrapping<i64>

Sourceยง

fn shl_assign(&mut self, other: &usize)

Performs the <<= operation. Read more
1.22.0 ยท Sourceยง

impl ShlAssign<&usize> for Wrapping<i8>

Sourceยง

fn shl_assign(&mut self, other: &usize)

Performs the <<= operation. Read more
1.22.0 ยท Sourceยง

impl ShlAssign<&usize> for Wrapping<isize>

Sourceยง

fn shl_assign(&mut self, other: &usize)

Performs the <<= operation. Read more
1.22.0 ยท Sourceยง

impl ShlAssign<&usize> for Wrapping<u128>

Sourceยง

fn shl_assign(&mut self, other: &usize)

Performs the <<= operation. Read more
1.22.0 ยท Sourceยง

impl ShlAssign<&usize> for Wrapping<u16>

Sourceยง

fn shl_assign(&mut self, other: &usize)

Performs the <<= operation. Read more
1.22.0 ยท Sourceยง

impl ShlAssign<&usize> for Wrapping<u32>

Sourceยง

fn shl_assign(&mut self, other: &usize)

Performs the <<= operation. Read more
1.22.0 ยท Sourceยง

impl ShlAssign<&usize> for Wrapping<u64>

Sourceยง

fn shl_assign(&mut self, other: &usize)

Performs the <<= operation. Read more
1.22.0 ยท Sourceยง

impl ShlAssign<&usize> for Wrapping<u8>

Sourceยง

fn shl_assign(&mut self, other: &usize)

Performs the <<= operation. Read more
1.22.0 ยท Sourceยง

impl ShlAssign<&usize> for Wrapping<usize>

Sourceยง

fn shl_assign(&mut self, other: &usize)

Performs the <<= operation. Read more
1.8.0 ยท Sourceยง

impl ShlAssign<usize> for Wrapping<i128>

Sourceยง

fn shl_assign(&mut self, other: usize)

Performs the <<= operation. Read more
1.8.0 ยท Sourceยง

impl ShlAssign<usize> for Wrapping<i16>

Sourceยง

fn shl_assign(&mut self, other: usize)

Performs the <<= operation. Read more
1.8.0 ยท Sourceยง

impl ShlAssign<usize> for Wrapping<i32>

Sourceยง

fn shl_assign(&mut self, other: usize)

Performs the <<= operation. Read more
1.8.0 ยท Sourceยง

impl ShlAssign<usize> for Wrapping<i64>

Sourceยง

fn shl_assign(&mut self, other: usize)

Performs the <<= operation. Read more
1.8.0 ยท Sourceยง

impl ShlAssign<usize> for Wrapping<i8>

Sourceยง

fn shl_assign(&mut self, other: usize)

Performs the <<= operation. Read more
1.8.0 ยท Sourceยง

impl ShlAssign<usize> for Wrapping<isize>

Sourceยง

fn shl_assign(&mut self, other: usize)

Performs the <<= operation. Read more
1.8.0 ยท Sourceยง

impl ShlAssign<usize> for Wrapping<u128>

Sourceยง

fn shl_assign(&mut self, other: usize)

Performs the <<= operation. Read more
1.8.0 ยท Sourceยง

impl ShlAssign<usize> for Wrapping<u16>

Sourceยง

fn shl_assign(&mut self, other: usize)

Performs the <<= operation. Read more
1.8.0 ยท Sourceยง

impl ShlAssign<usize> for Wrapping<u32>

Sourceยง

fn shl_assign(&mut self, other: usize)

Performs the <<= operation. Read more
1.8.0 ยท Sourceยง

impl ShlAssign<usize> for Wrapping<u64>

Sourceยง

fn shl_assign(&mut self, other: usize)

Performs the <<= operation. Read more
1.8.0 ยท Sourceยง

impl ShlAssign<usize> for Wrapping<u8>

Sourceยง

fn shl_assign(&mut self, other: usize)

Performs the <<= operation. Read more
1.8.0 ยท Sourceยง

impl ShlAssign<usize> for Wrapping<usize>

Sourceยง

fn shl_assign(&mut self, other: usize)

Performs the <<= operation. Read more
1.39.0 ยท Sourceยง

impl Shr<&usize> for &Wrapping<i128>

Sourceยง

type Output = <Wrapping<i128> as Shr<usize>>::Output

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: &usize) -> <Wrapping<i128> as Shr<usize>>::Output

Performs the >> operation. Read more
1.39.0 ยท Sourceยง

impl Shr<&usize> for &Wrapping<i16>

Sourceยง

type Output = <Wrapping<i16> as Shr<usize>>::Output

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: &usize) -> <Wrapping<i16> as Shr<usize>>::Output

Performs the >> operation. Read more
1.39.0 ยท Sourceยง

impl Shr<&usize> for &Wrapping<i32>

Sourceยง

type Output = <Wrapping<i32> as Shr<usize>>::Output

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: &usize) -> <Wrapping<i32> as Shr<usize>>::Output

Performs the >> operation. Read more
1.39.0 ยท Sourceยง

impl Shr<&usize> for &Wrapping<i64>

Sourceยง

type Output = <Wrapping<i64> as Shr<usize>>::Output

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: &usize) -> <Wrapping<i64> as Shr<usize>>::Output

Performs the >> operation. Read more
1.39.0 ยท Sourceยง

impl Shr<&usize> for &Wrapping<i8>

Sourceยง

type Output = <Wrapping<i8> as Shr<usize>>::Output

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: &usize) -> <Wrapping<i8> as Shr<usize>>::Output

Performs the >> operation. Read more
1.39.0 ยท Sourceยง

impl Shr<&usize> for &Wrapping<isize>

Sourceยง

type Output = <Wrapping<isize> as Shr<usize>>::Output

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: &usize) -> <Wrapping<isize> as Shr<usize>>::Output

Performs the >> operation. Read more
1.39.0 ยท Sourceยง

impl Shr<&usize> for &Wrapping<u128>

Sourceยง

type Output = <Wrapping<u128> as Shr<usize>>::Output

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: &usize) -> <Wrapping<u128> as Shr<usize>>::Output

Performs the >> operation. Read more
1.39.0 ยท Sourceยง

impl Shr<&usize> for &Wrapping<u16>

Sourceยง

type Output = <Wrapping<u16> as Shr<usize>>::Output

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: &usize) -> <Wrapping<u16> as Shr<usize>>::Output

Performs the >> operation. Read more
1.39.0 ยท Sourceยง

impl Shr<&usize> for &Wrapping<u32>

Sourceยง

type Output = <Wrapping<u32> as Shr<usize>>::Output

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: &usize) -> <Wrapping<u32> as Shr<usize>>::Output

Performs the >> operation. Read more
1.39.0 ยท Sourceยง

impl Shr<&usize> for &Wrapping<u64>

Sourceยง

type Output = <Wrapping<u64> as Shr<usize>>::Output

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: &usize) -> <Wrapping<u64> as Shr<usize>>::Output

Performs the >> operation. Read more
1.39.0 ยท Sourceยง

impl Shr<&usize> for &Wrapping<u8>

Sourceยง

type Output = <Wrapping<u8> as Shr<usize>>::Output

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: &usize) -> <Wrapping<u8> as Shr<usize>>::Output

Performs the >> operation. Read more
1.39.0 ยท Sourceยง

impl Shr<&usize> for &Wrapping<usize>

Sourceยง

type Output = <Wrapping<usize> as Shr<usize>>::Output

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: &usize) -> <Wrapping<usize> as Shr<usize>>::Output

Performs the >> operation. Read more
1.39.0 ยท Sourceยง

impl Shr<&usize> for Wrapping<i128>

Sourceยง

type Output = <Wrapping<i128> as Shr<usize>>::Output

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: &usize) -> <Wrapping<i128> as Shr<usize>>::Output

Performs the >> operation. Read more
1.39.0 ยท Sourceยง

impl Shr<&usize> for Wrapping<i16>

Sourceยง

type Output = <Wrapping<i16> as Shr<usize>>::Output

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: &usize) -> <Wrapping<i16> as Shr<usize>>::Output

Performs the >> operation. Read more
1.39.0 ยท Sourceยง

impl Shr<&usize> for Wrapping<i32>

Sourceยง

type Output = <Wrapping<i32> as Shr<usize>>::Output

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: &usize) -> <Wrapping<i32> as Shr<usize>>::Output

Performs the >> operation. Read more
1.39.0 ยท Sourceยง

impl Shr<&usize> for Wrapping<i64>

Sourceยง

type Output = <Wrapping<i64> as Shr<usize>>::Output

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: &usize) -> <Wrapping<i64> as Shr<usize>>::Output

Performs the >> operation. Read more
1.39.0 ยท Sourceยง

impl Shr<&usize> for Wrapping<i8>

Sourceยง

type Output = <Wrapping<i8> as Shr<usize>>::Output

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: &usize) -> <Wrapping<i8> as Shr<usize>>::Output

Performs the >> operation. Read more
1.39.0 ยท Sourceยง

impl Shr<&usize> for Wrapping<isize>

Sourceยง

type Output = <Wrapping<isize> as Shr<usize>>::Output

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: &usize) -> <Wrapping<isize> as Shr<usize>>::Output

Performs the >> operation. Read more
1.39.0 ยท Sourceยง

impl Shr<&usize> for Wrapping<u128>

Sourceยง

type Output = <Wrapping<u128> as Shr<usize>>::Output

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: &usize) -> <Wrapping<u128> as Shr<usize>>::Output

Performs the >> operation. Read more
1.39.0 ยท Sourceยง

impl Shr<&usize> for Wrapping<u16>

Sourceยง

type Output = <Wrapping<u16> as Shr<usize>>::Output

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: &usize) -> <Wrapping<u16> as Shr<usize>>::Output

Performs the >> operation. Read more
1.39.0 ยท Sourceยง

impl Shr<&usize> for Wrapping<u32>

Sourceยง

type Output = <Wrapping<u32> as Shr<usize>>::Output

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: &usize) -> <Wrapping<u32> as Shr<usize>>::Output

Performs the >> operation. Read more
1.39.0 ยท Sourceยง

impl Shr<&usize> for Wrapping<u64>

Sourceยง

type Output = <Wrapping<u64> as Shr<usize>>::Output

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: &usize) -> <Wrapping<u64> as Shr<usize>>::Output

Performs the >> operation. Read more
1.39.0 ยท Sourceยง

impl Shr<&usize> for Wrapping<u8>

Sourceยง

type Output = <Wrapping<u8> as Shr<usize>>::Output

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: &usize) -> <Wrapping<u8> as Shr<usize>>::Output

Performs the >> operation. Read more
1.39.0 ยท Sourceยง

impl Shr<&usize> for Wrapping<usize>

Sourceยง

type Output = <Wrapping<usize> as Shr<usize>>::Output

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: &usize) -> <Wrapping<usize> as Shr<usize>>::Output

Performs the >> operation. Read more
1.39.0 ยท Sourceยง

impl<'a> Shr<usize> for &'a Wrapping<i128>

Sourceยง

type Output = <Wrapping<i128> as Shr<usize>>::Output

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: usize) -> <Wrapping<i128> as Shr<usize>>::Output

Performs the >> operation. Read more
1.39.0 ยท Sourceยง

impl<'a> Shr<usize> for &'a Wrapping<i16>

Sourceยง

type Output = <Wrapping<i16> as Shr<usize>>::Output

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: usize) -> <Wrapping<i16> as Shr<usize>>::Output

Performs the >> operation. Read more
1.39.0 ยท Sourceยง

impl<'a> Shr<usize> for &'a Wrapping<i32>

Sourceยง

type Output = <Wrapping<i32> as Shr<usize>>::Output

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: usize) -> <Wrapping<i32> as Shr<usize>>::Output

Performs the >> operation. Read more
1.39.0 ยท Sourceยง

impl<'a> Shr<usize> for &'a Wrapping<i64>

Sourceยง

type Output = <Wrapping<i64> as Shr<usize>>::Output

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: usize) -> <Wrapping<i64> as Shr<usize>>::Output

Performs the >> operation. Read more
1.39.0 ยท Sourceยง

impl<'a> Shr<usize> for &'a Wrapping<i8>

Sourceยง

type Output = <Wrapping<i8> as Shr<usize>>::Output

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: usize) -> <Wrapping<i8> as Shr<usize>>::Output

Performs the >> operation. Read more
1.39.0 ยท Sourceยง

impl<'a> Shr<usize> for &'a Wrapping<isize>

Sourceยง

type Output = <Wrapping<isize> as Shr<usize>>::Output

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: usize) -> <Wrapping<isize> as Shr<usize>>::Output

Performs the >> operation. Read more
1.39.0 ยท Sourceยง

impl<'a> Shr<usize> for &'a Wrapping<u128>

Sourceยง

type Output = <Wrapping<u128> as Shr<usize>>::Output

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: usize) -> <Wrapping<u128> as Shr<usize>>::Output

Performs the >> operation. Read more
1.39.0 ยท Sourceยง

impl<'a> Shr<usize> for &'a Wrapping<u16>

Sourceยง

type Output = <Wrapping<u16> as Shr<usize>>::Output

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: usize) -> <Wrapping<u16> as Shr<usize>>::Output

Performs the >> operation. Read more
1.39.0 ยท Sourceยง

impl<'a> Shr<usize> for &'a Wrapping<u32>

Sourceยง

type Output = <Wrapping<u32> as Shr<usize>>::Output

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: usize) -> <Wrapping<u32> as Shr<usize>>::Output

Performs the >> operation. Read more
1.39.0 ยท Sourceยง

impl<'a> Shr<usize> for &'a Wrapping<u64>

Sourceยง

type Output = <Wrapping<u64> as Shr<usize>>::Output

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: usize) -> <Wrapping<u64> as Shr<usize>>::Output

Performs the >> operation. Read more
1.39.0 ยท Sourceยง

impl<'a> Shr<usize> for &'a Wrapping<u8>

Sourceยง

type Output = <Wrapping<u8> as Shr<usize>>::Output

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: usize) -> <Wrapping<u8> as Shr<usize>>::Output

Performs the >> operation. Read more
1.39.0 ยท Sourceยง

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

Sourceยง

type Output = <Wrapping<usize> as Shr<usize>>::Output

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: usize) -> <Wrapping<usize> as Shr<usize>>::Output

Performs the >> operation. Read more
1.0.0 ยท Sourceยง

impl Shr<usize> for Wrapping<i128>

Sourceยง

type Output = Wrapping<i128>

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: usize) -> Wrapping<i128>

Performs the >> operation. Read more
1.0.0 ยท Sourceยง

impl Shr<usize> for Wrapping<i16>

Sourceยง

type Output = Wrapping<i16>

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: usize) -> Wrapping<i16>

Performs the >> operation. Read more
1.0.0 ยท Sourceยง

impl Shr<usize> for Wrapping<i32>

Sourceยง

type Output = Wrapping<i32>

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: usize) -> Wrapping<i32>

Performs the >> operation. Read more
1.0.0 ยท Sourceยง

impl Shr<usize> for Wrapping<i64>

Sourceยง

type Output = Wrapping<i64>

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: usize) -> Wrapping<i64>

Performs the >> operation. Read more
1.0.0 ยท Sourceยง

impl Shr<usize> for Wrapping<i8>

Sourceยง

type Output = Wrapping<i8>

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: usize) -> Wrapping<i8>

Performs the >> operation. Read more
1.0.0 ยท Sourceยง

impl Shr<usize> for Wrapping<isize>

Sourceยง

type Output = Wrapping<isize>

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: usize) -> Wrapping<isize>

Performs the >> operation. Read more
1.0.0 ยท Sourceยง

impl Shr<usize> for Wrapping<u128>

Sourceยง

type Output = Wrapping<u128>

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: usize) -> Wrapping<u128>

Performs the >> operation. Read more
1.0.0 ยท Sourceยง

impl Shr<usize> for Wrapping<u16>

Sourceยง

type Output = Wrapping<u16>

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: usize) -> Wrapping<u16>

Performs the >> operation. Read more
1.0.0 ยท Sourceยง

impl Shr<usize> for Wrapping<u32>

Sourceยง

type Output = Wrapping<u32>

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: usize) -> Wrapping<u32>

Performs the >> operation. Read more
1.0.0 ยท Sourceยง

impl Shr<usize> for Wrapping<u64>

Sourceยง

type Output = Wrapping<u64>

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: usize) -> Wrapping<u64>

Performs the >> operation. Read more
1.0.0 ยท Sourceยง

impl Shr<usize> for Wrapping<u8>

Sourceยง

type Output = Wrapping<u8>

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: usize) -> Wrapping<u8>

Performs the >> operation. Read more
1.0.0 ยท Sourceยง

impl Shr<usize> for Wrapping<usize>

Sourceยง

type Output = Wrapping<usize>

The resulting type after applying the >> operator.
Sourceยง

fn shr(self, other: usize) -> Wrapping<usize>

Performs the >> operation. Read more
1.22.0 ยท Sourceยง

impl ShrAssign<&usize> for Wrapping<i128>

Sourceยง

fn shr_assign(&mut self, other: &usize)

Performs the >>= operation. Read more
1.22.0 ยท Sourceยง

impl ShrAssign<&usize> for Wrapping<i16>

Sourceยง

fn shr_assign(&mut self, other: &usize)

Performs the >>= operation. Read more
1.22.0 ยท Sourceยง

impl ShrAssign<&usize> for Wrapping<i32>

Sourceยง

fn shr_assign(&mut self, other: &usize)

Performs the >>= operation. Read more
1.22.0 ยท Sourceยง

impl ShrAssign<&usize> for Wrapping<i64>

Sourceยง

fn shr_assign(&mut self, other: &usize)

Performs the >>= operation. Read more
1.22.0 ยท Sourceยง

impl ShrAssign<&usize> for Wrapping<i8>

Sourceยง

fn shr_assign(&mut self, other: &usize)

Performs the >>= operation. Read more
1.22.0 ยท Sourceยง

impl ShrAssign<&usize> for Wrapping<isize>

Sourceยง

fn shr_assign(&mut self, other: &usize)

Performs the >>= operation. Read more
1.22.0 ยท Sourceยง

impl ShrAssign<&usize> for Wrapping<u128>

Sourceยง

fn shr_assign(&mut self, other: &usize)

Performs the >>= operation. Read more
1.22.0 ยท Sourceยง

impl ShrAssign<&usize> for Wrapping<u16>

Sourceยง

fn shr_assign(&mut self, other: &usize)

Performs the >>= operation. Read more
1.22.0 ยท Sourceยง

impl ShrAssign<&usize> for Wrapping<u32>

Sourceยง

fn shr_assign(&mut self, other: &usize)

Performs the >>= operation. Read more
1.22.0 ยท Sourceยง

impl ShrAssign<&usize> for Wrapping<u64>

Sourceยง

fn shr_assign(&mut self, other: &usize)

Performs the >>= operation. Read more
1.22.0 ยท Sourceยง

impl ShrAssign<&usize> for Wrapping<u8>

Sourceยง

fn shr_assign(&mut self, other: &usize)

Performs the >>= operation. Read more
1.22.0 ยท Sourceยง

impl ShrAssign<&usize> for Wrapping<usize>

Sourceยง

fn shr_assign(&mut self, other: &usize)

Performs the >>= operation. Read more
1.8.0 ยท Sourceยง

impl ShrAssign<usize> for Wrapping<i128>

Sourceยง

fn shr_assign(&mut self, other: usize)

Performs the >>= operation. Read more
1.8.0 ยท Sourceยง

impl ShrAssign<usize> for Wrapping<i16>

Sourceยง

fn shr_assign(&mut self, other: usize)

Performs the >>= operation. Read more
1.8.0 ยท Sourceยง

impl ShrAssign<usize> for Wrapping<i32>

Sourceยง

fn shr_assign(&mut self, other: usize)

Performs the >>= operation. Read more
1.8.0 ยท Sourceยง

impl ShrAssign<usize> for Wrapping<i64>

Sourceยง

fn shr_assign(&mut self, other: usize)

Performs the >>= operation. Read more
1.8.0 ยท Sourceยง

impl ShrAssign<usize> for Wrapping<i8>

Sourceยง

fn shr_assign(&mut self, other: usize)

Performs the >>= operation. Read more
1.8.0 ยท Sourceยง

impl ShrAssign<usize> for Wrapping<isize>

Sourceยง

fn shr_assign(&mut self, other: usize)

Performs the >>= operation. Read more
1.8.0 ยท Sourceยง

impl ShrAssign<usize> for Wrapping<u128>

Sourceยง

fn shr_assign(&mut self, other: usize)

Performs the >>= operation. Read more
1.8.0 ยท Sourceยง

impl ShrAssign<usize> for Wrapping<u16>

Sourceยง

fn shr_assign(&mut self, other: usize)

Performs the >>= operation. Read more
1.8.0 ยท Sourceยง

impl ShrAssign<usize> for Wrapping<u32>

Sourceยง

fn shr_assign(&mut self, other: usize)

Performs the >>= operation. Read more
1.8.0 ยท Sourceยง

impl ShrAssign<usize> for Wrapping<u64>

Sourceยง

fn shr_assign(&mut self, other: usize)

Performs the >>= operation. Read more
1.8.0 ยท Sourceยง

impl ShrAssign<usize> for Wrapping<u8>

Sourceยง

fn shr_assign(&mut self, other: usize)

Performs the >>= operation. Read more
1.8.0 ยท Sourceยง

impl ShrAssign<usize> for Wrapping<usize>

Sourceยง

fn shr_assign(&mut self, other: usize)

Performs the >>= operation. Read more
Sourceยง

impl<T> Signed for Wrapping<T>
where T: Signed, Wrapping<T>: Num + Neg<Output = Wrapping<T>>,

Sourceยง

fn abs(&self) -> Wrapping<T>

Computes the absolute value. Read more
Sourceยง

fn abs_sub(&self, other: &Wrapping<T>) -> Wrapping<T>

The positive difference of two numbers. Read more
Sourceยง

fn signum(&self) -> Wrapping<T>

Returns the sign of the number. Read more
Sourceยง

fn is_positive(&self) -> bool

Returns true if the number is positive and false if the number is zero or negative.
Sourceยง

fn is_negative(&self) -> bool

Returns true if the number is negative and false if the number is zero or positive.
ยง

impl<T> SmartDisplay for Wrapping<T>
where T: SmartDisplay,

ยง

type Metadata = <T as SmartDisplay>::Metadata

User-provided metadata type.
ยง

fn metadata(&self, f: FormatterOptions) -> Metadata<'_, Wrapping<T>>

Compute any information needed to format the value. This must, at a minimum, determine the width of the value before any padding is added by the formatter. Read more
ยง

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

Format the value using the given formatter. This is the same as Display::fmt. Read more
ยง

fn fmt_with_metadata( &self, f: &mut Formatter<'_>, _metadata: Metadata<'_, Self>, ) -> Result<(), Error>

Format the value using the given formatter and metadata. The formatted output should have the width indicated by the metadata. This is before any padding is added by the formatter. Read more
1.14.0 ยท Sourceยง

impl Sub<&Wrapping<i128>> for &Wrapping<i128>

Sourceยง

type Output = <Wrapping<i128> as Sub>::Output

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: &Wrapping<i128>) -> <Wrapping<i128> as Sub>::Output

Performs the - operation. Read more
1.14.0 ยท Sourceยง

impl Sub<&Wrapping<i128>> for Wrapping<i128>

Sourceยง

type Output = <Wrapping<i128> as Sub>::Output

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: &Wrapping<i128>) -> <Wrapping<i128> as Sub>::Output

Performs the - operation. Read more
1.14.0 ยท Sourceยง

impl Sub<&Wrapping<i16>> for &Wrapping<i16>

Sourceยง

type Output = <Wrapping<i16> as Sub>::Output

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: &Wrapping<i16>) -> <Wrapping<i16> as Sub>::Output

Performs the - operation. Read more
1.14.0 ยท Sourceยง

impl Sub<&Wrapping<i16>> for Wrapping<i16>

Sourceยง

type Output = <Wrapping<i16> as Sub>::Output

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: &Wrapping<i16>) -> <Wrapping<i16> as Sub>::Output

Performs the - operation. Read more
1.14.0 ยท Sourceยง

impl Sub<&Wrapping<i32>> for &Wrapping<i32>

Sourceยง

type Output = <Wrapping<i32> as Sub>::Output

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: &Wrapping<i32>) -> <Wrapping<i32> as Sub>::Output

Performs the - operation. Read more
1.14.0 ยท Sourceยง

impl Sub<&Wrapping<i32>> for Wrapping<i32>

Sourceยง

type Output = <Wrapping<i32> as Sub>::Output

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: &Wrapping<i32>) -> <Wrapping<i32> as Sub>::Output

Performs the - operation. Read more
1.14.0 ยท Sourceยง

impl Sub<&Wrapping<i64>> for &Wrapping<i64>

Sourceยง

type Output = <Wrapping<i64> as Sub>::Output

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: &Wrapping<i64>) -> <Wrapping<i64> as Sub>::Output

Performs the - operation. Read more
1.14.0 ยท Sourceยง

impl Sub<&Wrapping<i64>> for Wrapping<i64>

Sourceยง

type Output = <Wrapping<i64> as Sub>::Output

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: &Wrapping<i64>) -> <Wrapping<i64> as Sub>::Output

Performs the - operation. Read more
1.14.0 ยท Sourceยง

impl Sub<&Wrapping<i8>> for &Wrapping<i8>

Sourceยง

type Output = <Wrapping<i8> as Sub>::Output

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: &Wrapping<i8>) -> <Wrapping<i8> as Sub>::Output

Performs the - operation. Read more
1.14.0 ยท Sourceยง

impl Sub<&Wrapping<i8>> for Wrapping<i8>

Sourceยง

type Output = <Wrapping<i8> as Sub>::Output

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: &Wrapping<i8>) -> <Wrapping<i8> as Sub>::Output

Performs the - operation. Read more
1.14.0 ยท Sourceยง

impl Sub<&Wrapping<isize>> for &Wrapping<isize>

Sourceยง

type Output = <Wrapping<isize> as Sub>::Output

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: &Wrapping<isize>) -> <Wrapping<isize> as Sub>::Output

Performs the - operation. Read more
1.14.0 ยท Sourceยง

impl Sub<&Wrapping<isize>> for Wrapping<isize>

Sourceยง

type Output = <Wrapping<isize> as Sub>::Output

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: &Wrapping<isize>) -> <Wrapping<isize> as Sub>::Output

Performs the - operation. Read more
1.14.0 ยท Sourceยง

impl Sub<&Wrapping<u128>> for &Wrapping<u128>

Sourceยง

type Output = <Wrapping<u128> as Sub>::Output

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: &Wrapping<u128>) -> <Wrapping<u128> as Sub>::Output

Performs the - operation. Read more
1.14.0 ยท Sourceยง

impl Sub<&Wrapping<u128>> for Wrapping<u128>

Sourceยง

type Output = <Wrapping<u128> as Sub>::Output

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: &Wrapping<u128>) -> <Wrapping<u128> as Sub>::Output

Performs the - operation. Read more
1.14.0 ยท Sourceยง

impl Sub<&Wrapping<u16>> for &Wrapping<u16>

Sourceยง

type Output = <Wrapping<u16> as Sub>::Output

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: &Wrapping<u16>) -> <Wrapping<u16> as Sub>::Output

Performs the - operation. Read more
1.14.0 ยท Sourceยง

impl Sub<&Wrapping<u16>> for Wrapping<u16>

Sourceยง

type Output = <Wrapping<u16> as Sub>::Output

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: &Wrapping<u16>) -> <Wrapping<u16> as Sub>::Output

Performs the - operation. Read more
1.14.0 ยท Sourceยง

impl Sub<&Wrapping<u32>> for &Wrapping<u32>

Sourceยง

type Output = <Wrapping<u32> as Sub>::Output

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: &Wrapping<u32>) -> <Wrapping<u32> as Sub>::Output

Performs the - operation. Read more
1.14.0 ยท Sourceยง

impl Sub<&Wrapping<u32>> for Wrapping<u32>

Sourceยง

type Output = <Wrapping<u32> as Sub>::Output

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: &Wrapping<u32>) -> <Wrapping<u32> as Sub>::Output

Performs the - operation. Read more
1.14.0 ยท Sourceยง

impl Sub<&Wrapping<u64>> for &Wrapping<u64>

Sourceยง

type Output = <Wrapping<u64> as Sub>::Output

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: &Wrapping<u64>) -> <Wrapping<u64> as Sub>::Output

Performs the - operation. Read more
1.14.0 ยท Sourceยง

impl Sub<&Wrapping<u64>> for Wrapping<u64>

Sourceยง

type Output = <Wrapping<u64> as Sub>::Output

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: &Wrapping<u64>) -> <Wrapping<u64> as Sub>::Output

Performs the - operation. Read more
1.14.0 ยท Sourceยง

impl Sub<&Wrapping<u8>> for &Wrapping<u8>

Sourceยง

type Output = <Wrapping<u8> as Sub>::Output

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: &Wrapping<u8>) -> <Wrapping<u8> as Sub>::Output

Performs the - operation. Read more
1.14.0 ยท Sourceยง

impl Sub<&Wrapping<u8>> for Wrapping<u8>

Sourceยง

type Output = <Wrapping<u8> as Sub>::Output

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: &Wrapping<u8>) -> <Wrapping<u8> as Sub>::Output

Performs the - operation. Read more
1.14.0 ยท Sourceยง

impl Sub<&Wrapping<usize>> for &Wrapping<usize>

Sourceยง

type Output = <Wrapping<usize> as Sub>::Output

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: &Wrapping<usize>) -> <Wrapping<usize> as Sub>::Output

Performs the - operation. Read more
1.14.0 ยท Sourceยง

impl Sub<&Wrapping<usize>> for Wrapping<usize>

Sourceยง

type Output = <Wrapping<usize> as Sub>::Output

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: &Wrapping<usize>) -> <Wrapping<usize> as Sub>::Output

Performs the - operation. Read more
1.14.0 ยท Sourceยง

impl<'a> Sub<Wrapping<i128>> for &'a Wrapping<i128>

Sourceยง

type Output = <Wrapping<i128> as Sub>::Output

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: Wrapping<i128>) -> <Wrapping<i128> as Sub>::Output

Performs the - operation. Read more
1.14.0 ยท Sourceยง

impl<'a> Sub<Wrapping<i16>> for &'a Wrapping<i16>

Sourceยง

type Output = <Wrapping<i16> as Sub>::Output

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: Wrapping<i16>) -> <Wrapping<i16> as Sub>::Output

Performs the - operation. Read more
1.14.0 ยท Sourceยง

impl<'a> Sub<Wrapping<i32>> for &'a Wrapping<i32>

Sourceยง

type Output = <Wrapping<i32> as Sub>::Output

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: Wrapping<i32>) -> <Wrapping<i32> as Sub>::Output

Performs the - operation. Read more
1.14.0 ยท Sourceยง

impl<'a> Sub<Wrapping<i64>> for &'a Wrapping<i64>

Sourceยง

type Output = <Wrapping<i64> as Sub>::Output

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: Wrapping<i64>) -> <Wrapping<i64> as Sub>::Output

Performs the - operation. Read more
1.14.0 ยท Sourceยง

impl<'a> Sub<Wrapping<i8>> for &'a Wrapping<i8>

Sourceยง

type Output = <Wrapping<i8> as Sub>::Output

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: Wrapping<i8>) -> <Wrapping<i8> as Sub>::Output

Performs the - operation. Read more
1.14.0 ยท Sourceยง

impl<'a> Sub<Wrapping<isize>> for &'a Wrapping<isize>

Sourceยง

type Output = <Wrapping<isize> as Sub>::Output

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: Wrapping<isize>) -> <Wrapping<isize> as Sub>::Output

Performs the - operation. Read more
1.14.0 ยท Sourceยง

impl<'a> Sub<Wrapping<u128>> for &'a Wrapping<u128>

Sourceยง

type Output = <Wrapping<u128> as Sub>::Output

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: Wrapping<u128>) -> <Wrapping<u128> as Sub>::Output

Performs the - operation. Read more
1.14.0 ยท Sourceยง

impl<'a> Sub<Wrapping<u16>> for &'a Wrapping<u16>

Sourceยง

type Output = <Wrapping<u16> as Sub>::Output

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: Wrapping<u16>) -> <Wrapping<u16> as Sub>::Output

Performs the - operation. Read more
1.14.0 ยท Sourceยง

impl<'a> Sub<Wrapping<u32>> for &'a Wrapping<u32>

Sourceยง

type Output = <Wrapping<u32> as Sub>::Output

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: Wrapping<u32>) -> <Wrapping<u32> as Sub>::Output

Performs the - operation. Read more
1.14.0 ยท Sourceยง

impl<'a> Sub<Wrapping<u64>> for &'a Wrapping<u64>

Sourceยง

type Output = <Wrapping<u64> as Sub>::Output

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: Wrapping<u64>) -> <Wrapping<u64> as Sub>::Output

Performs the - operation. Read more
1.14.0 ยท Sourceยง

impl<'a> Sub<Wrapping<u8>> for &'a Wrapping<u8>

Sourceยง

type Output = <Wrapping<u8> as Sub>::Output

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: Wrapping<u8>) -> <Wrapping<u8> as Sub>::Output

Performs the - operation. Read more
1.14.0 ยท Sourceยง

impl<'a> Sub<Wrapping<usize>> for &'a Wrapping<usize>

Sourceยง

type Output = <Wrapping<usize> as Sub>::Output

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: Wrapping<usize>) -> <Wrapping<usize> as Sub>::Output

Performs the - operation. Read more
1.0.0 ยท Sourceยง

impl Sub for Wrapping<i128>

Sourceยง

type Output = Wrapping<i128>

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: Wrapping<i128>) -> Wrapping<i128>

Performs the - operation. Read more
1.0.0 ยท Sourceยง

impl Sub for Wrapping<i16>

Sourceยง

type Output = Wrapping<i16>

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: Wrapping<i16>) -> Wrapping<i16>

Performs the - operation. Read more
1.0.0 ยท Sourceยง

impl Sub for Wrapping<i32>

Sourceยง

type Output = Wrapping<i32>

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: Wrapping<i32>) -> Wrapping<i32>

Performs the - operation. Read more
1.0.0 ยท Sourceยง

impl Sub for Wrapping<i64>

Sourceยง

type Output = Wrapping<i64>

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: Wrapping<i64>) -> Wrapping<i64>

Performs the - operation. Read more
1.0.0 ยท Sourceยง

impl Sub for Wrapping<i8>

Sourceยง

type Output = Wrapping<i8>

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: Wrapping<i8>) -> Wrapping<i8>

Performs the - operation. Read more
1.0.0 ยท Sourceยง

impl Sub for Wrapping<isize>

Sourceยง

type Output = Wrapping<isize>

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: Wrapping<isize>) -> Wrapping<isize>

Performs the - operation. Read more
1.0.0 ยท Sourceยง

impl Sub for Wrapping<u128>

Sourceยง

type Output = Wrapping<u128>

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: Wrapping<u128>) -> Wrapping<u128>

Performs the - operation. Read more
1.0.0 ยท Sourceยง

impl Sub for Wrapping<u16>

Sourceยง

type Output = Wrapping<u16>

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: Wrapping<u16>) -> Wrapping<u16>

Performs the - operation. Read more
1.0.0 ยท Sourceยง

impl Sub for Wrapping<u32>

Sourceยง

type Output = Wrapping<u32>

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: Wrapping<u32>) -> Wrapping<u32>

Performs the - operation. Read more
1.0.0 ยท Sourceยง

impl Sub for Wrapping<u64>

Sourceยง

type Output = Wrapping<u64>

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: Wrapping<u64>) -> Wrapping<u64>

Performs the - operation. Read more
1.0.0 ยท Sourceยง

impl Sub for Wrapping<u8>

Sourceยง

type Output = Wrapping<u8>

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: Wrapping<u8>) -> Wrapping<u8>

Performs the - operation. Read more
1.0.0 ยท Sourceยง

impl Sub for Wrapping<usize>

Sourceยง

type Output = Wrapping<usize>

The resulting type after applying the - operator.
Sourceยง

fn sub(self, other: Wrapping<usize>) -> Wrapping<usize>

Performs the - operation. Read more
1.22.0 ยท Sourceยง

impl SubAssign<&Wrapping<i128>> for Wrapping<i128>

Sourceยง

fn sub_assign(&mut self, other: &Wrapping<i128>)

Performs the -= operation. Read more
1.22.0 ยท Sourceยง

impl SubAssign<&Wrapping<i16>> for Wrapping<i16>

Sourceยง

fn sub_assign(&mut self, other: &Wrapping<i16>)

Performs the -= operation. Read more
1.22.0 ยท Sourceยง

impl SubAssign<&Wrapping<i32>> for Wrapping<i32>

Sourceยง

fn sub_assign(&mut self, other: &Wrapping<i32>)

Performs the -= operation. Read more
1.22.0 ยท Sourceยง

impl SubAssign<&Wrapping<i64>> for Wrapping<i64>

Sourceยง

fn sub_assign(&mut self, other: &Wrapping<i64>)

Performs the -= operation. Read more
1.22.0 ยท Sourceยง

impl SubAssign<&Wrapping<i8>> for Wrapping<i8>

Sourceยง

fn sub_assign(&mut self, other: &Wrapping<i8>)

Performs the -= operation. Read more
1.22.0 ยท Sourceยง

impl SubAssign<&Wrapping<isize>> for Wrapping<isize>

Sourceยง

fn sub_assign(&mut self, other: &Wrapping<isize>)

Performs the -= operation. Read more
1.22.0 ยท Sourceยง

impl SubAssign<&Wrapping<u128>> for Wrapping<u128>

Sourceยง

fn sub_assign(&mut self, other: &Wrapping<u128>)

Performs the -= operation. Read more
1.22.0 ยท Sourceยง

impl SubAssign<&Wrapping<u16>> for Wrapping<u16>

Sourceยง

fn sub_assign(&mut self, other: &Wrapping<u16>)

Performs the -= operation. Read more
1.22.0 ยท Sourceยง

impl SubAssign<&Wrapping<u32>> for Wrapping<u32>

Sourceยง

fn sub_assign(&mut self, other: &Wrapping<u32>)

Performs the -= operation. Read more
1.22.0 ยท Sourceยง

impl SubAssign<&Wrapping<u64>> for Wrapping<u64>

Sourceยง

fn sub_assign(&mut self, other: &Wrapping<u64>)

Performs the -= operation. Read more
1.22.0 ยท Sourceยง

impl SubAssign<&Wrapping<u8>> for Wrapping<u8>

Sourceยง

fn sub_assign(&mut self, other: &Wrapping<u8>)

Performs the -= operation. Read more
1.22.0 ยท Sourceยง

impl SubAssign<&Wrapping<usize>> for Wrapping<usize>

Sourceยง

fn sub_assign(&mut self, other: &Wrapping<usize>)

Performs the -= operation. Read more
1.22.0 ยท Sourceยง

impl SubAssign<&i128> for Wrapping<i128>

Sourceยง

fn sub_assign(&mut self, other: &i128)

Performs the -= operation. Read more
1.22.0 ยท Sourceยง

impl SubAssign<&i16> for Wrapping<i16>

Sourceยง

fn sub_assign(&mut self, other: &i16)

Performs the -= operation. Read more
1.22.0 ยท Sourceยง

impl SubAssign<&i32> for Wrapping<i32>

Sourceยง

fn sub_assign(&mut self, other: &i32)

Performs the -= operation. Read more
1.22.0 ยท Sourceยง

impl SubAssign<&i64> for Wrapping<i64>

Sourceยง

fn sub_assign(&mut self, other: &i64)

Performs the -= operation. Read more
1.22.0 ยท Sourceยง

impl SubAssign<&i8> for Wrapping<i8>

Sourceยง

fn sub_assign(&mut self, other: &i8)

Performs the -= operation. Read more
1.22.0 ยท Sourceยง

impl SubAssign<&isize> for Wrapping<isize>

Sourceยง

fn sub_assign(&mut self, other: &isize)

Performs the -= operation. Read more
1.22.0 ยท Sourceยง

impl SubAssign<&u128> for Wrapping<u128>

Sourceยง

fn sub_assign(&mut self, other: &u128)

Performs the -= operation. Read more
1.22.0 ยท Sourceยง

impl SubAssign<&u16> for Wrapping<u16>

Sourceยง

fn sub_assign(&mut self, other: &u16)

Performs the -= operation. Read more
1.22.0 ยท Sourceยง

impl SubAssign<&u32> for Wrapping<u32>

Sourceยง

fn sub_assign(&mut self, other: &u32)

Performs the -= operation. Read more
1.22.0 ยท Sourceยง

impl SubAssign<&u64> for Wrapping<u64>

Sourceยง

fn sub_assign(&mut self, other: &u64)

Performs the -= operation. Read more
1.22.0 ยท Sourceยง

impl SubAssign<&u8> for Wrapping<u8>

Sourceยง

fn sub_assign(&mut self, other: &u8)

Performs the -= operation. Read more
1.22.0 ยท Sourceยง

impl SubAssign<&usize> for Wrapping<usize>

Sourceยง

fn sub_assign(&mut self, other: &usize)

Performs the -= operation. Read more
1.60.0 ยท Sourceยง

impl SubAssign<i128> for Wrapping<i128>

Sourceยง

fn sub_assign(&mut self, other: i128)

Performs the -= operation. Read more
1.60.0 ยท Sourceยง

impl SubAssign<i16> for Wrapping<i16>

Sourceยง

fn sub_assign(&mut self, other: i16)

Performs the -= operation. Read more
1.60.0 ยท Sourceยง

impl SubAssign<i32> for Wrapping<i32>

Sourceยง

fn sub_assign(&mut self, other: i32)

Performs the -= operation. Read more
1.60.0 ยท Sourceยง

impl SubAssign<i64> for Wrapping<i64>

Sourceยง

fn sub_assign(&mut self, other: i64)

Performs the -= operation. Read more
1.60.0 ยท Sourceยง

impl SubAssign<i8> for Wrapping<i8>

Sourceยง

fn sub_assign(&mut self, other: i8)

Performs the -= operation. Read more
1.60.0 ยท Sourceยง

impl SubAssign<isize> for Wrapping<isize>

Sourceยง

fn sub_assign(&mut self, other: isize)

Performs the -= operation. Read more
1.60.0 ยท Sourceยง

impl SubAssign<u128> for Wrapping<u128>

Sourceยง

fn sub_assign(&mut self, other: u128)

Performs the -= operation. Read more
1.60.0 ยท Sourceยง

impl SubAssign<u16> for Wrapping<u16>

Sourceยง

fn sub_assign(&mut self, other: u16)

Performs the -= operation. Read more
1.60.0 ยท Sourceยง

impl SubAssign<u32> for Wrapping<u32>

Sourceยง

fn sub_assign(&mut self, other: u32)

Performs the -= operation. Read more
1.60.0 ยท Sourceยง

impl SubAssign<u64> for Wrapping<u64>

Sourceยง

fn sub_assign(&mut self, other: u64)

Performs the -= operation. Read more
1.60.0 ยท Sourceยง

impl SubAssign<u8> for Wrapping<u8>

Sourceยง

fn sub_assign(&mut self, other: u8)

Performs the -= operation. Read more
1.60.0 ยท Sourceยง

impl SubAssign<usize> for Wrapping<usize>

Sourceยง

fn sub_assign(&mut self, other: usize)

Performs the -= operation. Read more
1.8.0 ยท Sourceยง

impl SubAssign for Wrapping<i128>

Sourceยง

fn sub_assign(&mut self, other: Wrapping<i128>)

Performs the -= operation. Read more
1.8.0 ยท Sourceยง

impl SubAssign for Wrapping<i16>

Sourceยง

fn sub_assign(&mut self, other: Wrapping<i16>)

Performs the -= operation. Read more
1.8.0 ยท Sourceยง

impl SubAssign for Wrapping<i32>

Sourceยง

fn sub_assign(&mut self, other: Wrapping<i32>)

Performs the -= operation. Read more
1.8.0 ยท Sourceยง

impl SubAssign for Wrapping<i64>

Sourceยง

fn sub_assign(&mut self, other: Wrapping<i64>)

Performs the -= operation. Read more
1.8.0 ยท Sourceยง

impl SubAssign for Wrapping<i8>

Sourceยง

fn sub_assign(&mut self, other: Wrapping<i8>)

Performs the -= operation. Read more
1.8.0 ยท Sourceยง

impl SubAssign for Wrapping<isize>

Sourceยง

fn sub_assign(&mut self, other: Wrapping<isize>)

Performs the -= operation. Read more
1.8.0 ยท Sourceยง

impl SubAssign for Wrapping<u128>

Sourceยง

fn sub_assign(&mut self, other: Wrapping<u128>)

Performs the -= operation. Read more
1.8.0 ยท Sourceยง

impl SubAssign for Wrapping<u16>

Sourceยง

fn sub_assign(&mut self, other: Wrapping<u16>)

Performs the -= operation. Read more
1.8.0 ยท Sourceยง

impl SubAssign for Wrapping<u32>

Sourceยง

fn sub_assign(&mut self, other: Wrapping<u32>)

Performs the -= operation. Read more
1.8.0 ยท Sourceยง

impl SubAssign for Wrapping<u64>

Sourceยง

fn sub_assign(&mut self, other: Wrapping<u64>)

Performs the -= operation. Read more
1.8.0 ยท Sourceยง

impl SubAssign for Wrapping<u8>

Sourceยง

fn sub_assign(&mut self, other: Wrapping<u8>)

Performs the -= operation. Read more
1.8.0 ยท Sourceยง

impl SubAssign for Wrapping<usize>

Sourceยง

fn sub_assign(&mut self, other: Wrapping<usize>)

Performs the -= operation. Read more
1.14.0 ยท Sourceยง

impl<'a> Sum<&'a Wrapping<i128>> for Wrapping<i128>

Sourceยง

fn sum<I>(iter: I) -> Wrapping<i128>
where I: Iterator<Item = &'a Wrapping<i128>>,

Takes an iterator and generates Self from the elements by โ€œsumming upโ€ the items.
1.14.0 ยท Sourceยง

impl<'a> Sum<&'a Wrapping<i16>> for Wrapping<i16>

Sourceยง

fn sum<I>(iter: I) -> Wrapping<i16>
where I: Iterator<Item = &'a Wrapping<i16>>,

Takes an iterator and generates Self from the elements by โ€œsumming upโ€ the items.
1.14.0 ยท Sourceยง

impl<'a> Sum<&'a Wrapping<i32>> for Wrapping<i32>

Sourceยง

fn sum<I>(iter: I) -> Wrapping<i32>
where I: Iterator<Item = &'a Wrapping<i32>>,

Takes an iterator and generates Self from the elements by โ€œsumming upโ€ the items.
1.14.0 ยท Sourceยง

impl<'a> Sum<&'a Wrapping<i64>> for Wrapping<i64>

Sourceยง

fn sum<I>(iter: I) -> Wrapping<i64>
where I: Iterator<Item = &'a Wrapping<i64>>,

Takes an iterator and generates Self from the elements by โ€œsumming upโ€ the items.
1.14.0 ยท Sourceยง

impl<'a> Sum<&'a Wrapping<i8>> for Wrapping<i8>

Sourceยง

fn sum<I>(iter: I) -> Wrapping<i8>
where I: Iterator<Item = &'a Wrapping<i8>>,

Takes an iterator and generates Self from the elements by โ€œsumming upโ€ the items.
1.14.0 ยท Sourceยง

impl<'a> Sum<&'a Wrapping<isize>> for Wrapping<isize>

Sourceยง

fn sum<I>(iter: I) -> Wrapping<isize>
where I: Iterator<Item = &'a Wrapping<isize>>,

Takes an iterator and generates Self from the elements by โ€œsumming upโ€ the items.
1.14.0 ยท Sourceยง

impl<'a> Sum<&'a Wrapping<u128>> for Wrapping<u128>

Sourceยง

fn sum<I>(iter: I) -> Wrapping<u128>
where I: Iterator<Item = &'a Wrapping<u128>>,

Takes an iterator and generates Self from the elements by โ€œsumming upโ€ the items.
1.14.0 ยท Sourceยง

impl<'a> Sum<&'a Wrapping<u16>> for Wrapping<u16>

Sourceยง

fn sum<I>(iter: I) -> Wrapping<u16>
where I: Iterator<Item = &'a Wrapping<u16>>,

Takes an iterator and generates Self from the elements by โ€œsumming upโ€ the items.
1.14.0 ยท Sourceยง

impl<'a> Sum<&'a Wrapping<u32>> for Wrapping<u32>

Sourceยง

fn sum<I>(iter: I) -> Wrapping<u32>
where I: Iterator<Item = &'a Wrapping<u32>>,

Takes an iterator and generates Self from the elements by โ€œsumming upโ€ the items.
1.14.0 ยท Sourceยง

impl<'a> Sum<&'a Wrapping<u64>> for Wrapping<u64>

Sourceยง

fn sum<I>(iter: I) -> Wrapping<u64>
where I: Iterator<Item = &'a Wrapping<u64>>,

Takes an iterator and generates Self from the elements by โ€œsumming upโ€ the items.
1.14.0 ยท Sourceยง

impl<'a> Sum<&'a Wrapping<u8>> for Wrapping<u8>

Sourceยง

fn sum<I>(iter: I) -> Wrapping<u8>
where I: Iterator<Item = &'a Wrapping<u8>>,

Takes an iterator and generates Self from the elements by โ€œsumming upโ€ the items.
1.14.0 ยท Sourceยง

impl<'a> Sum<&'a Wrapping<usize>> for Wrapping<usize>

Sourceยง

fn sum<I>(iter: I) -> Wrapping<usize>
where I: Iterator<Item = &'a Wrapping<usize>>,

Takes an iterator and generates Self from the elements by โ€œsumming upโ€ the items.
1.14.0 ยท Sourceยง

impl Sum for Wrapping<i128>

Sourceยง

fn sum<I>(iter: I) -> Wrapping<i128>
where I: Iterator<Item = Wrapping<i128>>,

Takes an iterator and generates Self from the elements by โ€œsumming upโ€ the items.
1.14.0 ยท Sourceยง

impl Sum for Wrapping<i16>

Sourceยง

fn sum<I>(iter: I) -> Wrapping<i16>
where I: Iterator<Item = Wrapping<i16>>,

Takes an iterator and generates Self from the elements by โ€œsumming upโ€ the items.
1.14.0 ยท Sourceยง

impl Sum for Wrapping<i32>

Sourceยง

fn sum<I>(iter: I) -> Wrapping<i32>
where I: Iterator<Item = Wrapping<i32>>,

Takes an iterator and generates Self from the elements by โ€œsumming upโ€ the items.
1.14.0 ยท Sourceยง

impl Sum for Wrapping<i64>

Sourceยง

fn sum<I>(iter: I) -> Wrapping<i64>
where I: Iterator<Item = Wrapping<i64>>,

Takes an iterator and generates Self from the elements by โ€œsumming upโ€ the items.
1.14.0 ยท Sourceยง

impl Sum for Wrapping<i8>

Sourceยง

fn sum<I>(iter: I) -> Wrapping<i8>
where I: Iterator<Item = Wrapping<i8>>,

Takes an iterator and generates Self from the elements by โ€œsumming upโ€ the items.
1.14.0 ยท Sourceยง

impl Sum for Wrapping<isize>

Sourceยง

fn sum<I>(iter: I) -> Wrapping<isize>
where I: Iterator<Item = Wrapping<isize>>,

Takes an iterator and generates Self from the elements by โ€œsumming upโ€ the items.
1.14.0 ยท Sourceยง

impl Sum for Wrapping<u128>

Sourceยง

fn sum<I>(iter: I) -> Wrapping<u128>
where I: Iterator<Item = Wrapping<u128>>,

Takes an iterator and generates Self from the elements by โ€œsumming upโ€ the items.
1.14.0 ยท Sourceยง

impl Sum for Wrapping<u16>

Sourceยง

fn sum<I>(iter: I) -> Wrapping<u16>
where I: Iterator<Item = Wrapping<u16>>,

Takes an iterator and generates Self from the elements by โ€œsumming upโ€ the items.
1.14.0 ยท Sourceยง

impl Sum for Wrapping<u32>

Sourceยง

fn sum<I>(iter: I) -> Wrapping<u32>
where I: Iterator<Item = Wrapping<u32>>,

Takes an iterator and generates Self from the elements by โ€œsumming upโ€ the items.
1.14.0 ยท Sourceยง

impl Sum for Wrapping<u64>

Sourceยง

fn sum<I>(iter: I) -> Wrapping<u64>
where I: Iterator<Item = Wrapping<u64>>,

Takes an iterator and generates Self from the elements by โ€œsumming upโ€ the items.
1.14.0 ยท Sourceยง

impl Sum for Wrapping<u8>

Sourceยง

fn sum<I>(iter: I) -> Wrapping<u8>
where I: Iterator<Item = Wrapping<u8>>,

Takes an iterator and generates Self from the elements by โ€œsumming upโ€ the items.
1.14.0 ยท Sourceยง

impl Sum for Wrapping<usize>

Sourceยง

fn sum<I>(iter: I) -> Wrapping<usize>
where I: Iterator<Item = Wrapping<usize>>,

Takes an iterator and generates Self from the elements by โ€œsumming upโ€ the items.
Sourceยง

impl<T> ToPrimitive for Wrapping<T>
where T: ToPrimitive,

Sourceยง

fn to_isize(&self) -> Option<isize>

Converts the value of self to an isize. If the value cannot be represented by an isize, then None is returned.
Sourceยง

fn to_i8(&self) -> Option<i8>

Converts the value of self to an i8. If the value cannot be represented by an i8, then None is returned.
Sourceยง

fn to_i16(&self) -> Option<i16>

Converts the value of self to an i16. If the value cannot be represented by an i16, then None is returned.
Sourceยง

fn to_i32(&self) -> Option<i32>

Converts the value of self to an i32. If the value cannot be represented by an i32, then None is returned.
Sourceยง

fn to_i64(&self) -> Option<i64>

Converts the value of self to an i64. If the value cannot be represented by an i64, then None is returned.
Sourceยง

fn to_i128(&self) -> Option<i128>

Converts the value of self to an i128. If the value cannot be represented by an i128 (i64 under the default implementation), then None is returned. Read more
Sourceยง

fn to_usize(&self) -> Option<usize>

Converts the value of self to a usize. If the value cannot be represented by a usize, then None is returned.
Sourceยง

fn to_u8(&self) -> Option<u8>

Converts the value of self to a u8. If the value cannot be represented by a u8, then None is returned.
Sourceยง

fn to_u16(&self) -> Option<u16>

Converts the value of self to a u16. If the value cannot be represented by a u16, then None is returned.
Sourceยง

fn to_u32(&self) -> Option<u32>

Converts the value of self to a u32. If the value cannot be represented by a u32, then None is returned.
Sourceยง

fn to_u64(&self) -> Option<u64>

Converts the value of self to a u64. If the value cannot be represented by a u64, then None is returned.
Sourceยง

fn to_u128(&self) -> Option<u128>

Converts the value of self to a u128. If the value cannot be represented by a u128 (u64 under the default implementation), then None is returned. Read more
Sourceยง

fn to_f32(&self) -> Option<f32>

Converts the value of self to an f32. Overflows may map to positive or negative inifinity, otherwise None is returned if the value cannot be represented by an f32.
Sourceยง

fn to_f64(&self) -> Option<f64>

Converts the value of self to an f64. Overflows may map to positive or negative inifinity, otherwise None is returned if the value cannot be represented by an f64. Read more
ยง

impl<T> TryFromBytes for Wrapping<T>
where T: TryFromBytes,

ยง

fn try_ref_from_bytes( source: &[u8], ) -> Result<&Self, ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>
where Self: KnownLayout + Immutable,

Attempts to interpret the given source as a &Self. Read more
ยง

fn try_ref_from_prefix( source: &[u8], ) -> Result<(&Self, &[u8]), ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>
where Self: KnownLayout + Immutable,

Attempts to interpret the prefix of the given source as a &Self. Read more
ยง

fn try_ref_from_suffix( source: &[u8], ) -> Result<(&[u8], &Self), ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>
where Self: KnownLayout + Immutable,

Attempts to interpret the suffix of the given source as a &Self. Read more
ยง

fn try_mut_from_bytes( bytes: &mut [u8], ) -> Result<&mut Self, ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, ValidityError<&mut [u8], Self>>>
where Self: KnownLayout + IntoBytes,

Attempts to interpret the given source as a &mut Self without copying. Read more
ยง

fn try_mut_from_prefix( source: &mut [u8], ) -> Result<(&mut Self, &mut [u8]), ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, ValidityError<&mut [u8], Self>>>
where Self: KnownLayout + IntoBytes,

Attempts to interpret the prefix of the given source as a &mut Self. Read more
ยง

fn try_mut_from_suffix( source: &mut [u8], ) -> Result<(&mut [u8], &mut Self), ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, ValidityError<&mut [u8], Self>>>
where Self: KnownLayout + IntoBytes,

Attempts to interpret the suffix of the given source as a &mut Self. Read more
ยง

fn try_ref_from_bytes_with_elems( source: &[u8], count: usize, ) -> Result<&Self, ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>
where Self: KnownLayout<PointerMetadata = usize> + Immutable,

Attempts to interpret the given source as a &Self with a DST length equal to count. Read more
ยง

fn try_ref_from_prefix_with_elems( source: &[u8], count: usize, ) -> Result<(&Self, &[u8]), ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>
where Self: KnownLayout<PointerMetadata = usize> + Immutable,

Attempts to interpret the prefix of the given source as a &Self with a DST length equal to count. Read more
ยง

fn try_ref_from_suffix_with_elems( source: &[u8], count: usize, ) -> Result<(&[u8], &Self), ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>
where Self: KnownLayout<PointerMetadata = usize> + Immutable,

Attempts to interpret the suffix of the given source as a &Self with a DST length equal to count. Read more
ยง

fn try_mut_from_bytes_with_elems( source: &mut [u8], count: usize, ) -> Result<&mut Self, ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, ValidityError<&mut [u8], Self>>>
where Self: KnownLayout<PointerMetadata = usize> + IntoBytes,

Attempts to interpret the given source as a &mut Self with a DST length equal to count. Read more
ยง

fn try_mut_from_prefix_with_elems( source: &mut [u8], count: usize, ) -> Result<(&mut Self, &mut [u8]), ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, ValidityError<&mut [u8], Self>>>
where Self: KnownLayout<PointerMetadata = usize> + IntoBytes,

Attempts to interpret the prefix of the given source as a &mut Self with a DST length equal to count. Read more
ยง

fn try_mut_from_suffix_with_elems( source: &mut [u8], count: usize, ) -> Result<(&mut [u8], &mut Self), ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, ValidityError<&mut [u8], Self>>>
where Self: KnownLayout<PointerMetadata = usize> + IntoBytes,

Attempts to interpret the suffix of the given source as a &mut Self with a DST length equal to count. Read more
ยง

fn try_read_from_bytes( source: &[u8], ) -> Result<Self, ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>
where Self: Sized,

Attempts to read the given source as a Self. Read more
ยง

fn try_read_from_prefix( source: &[u8], ) -> Result<(Self, &[u8]), ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>
where Self: Sized,

Attempts to read a Self from the prefix of the given source. Read more
ยง

fn try_read_from_suffix( source: &[u8], ) -> Result<(&[u8], Self), ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>
where Self: Sized,

Attempts to read a Self from the suffix of the given source. Read more
1.11.0 ยท Sourceยง

impl<T> UpperHex for Wrapping<T>
where T: UpperHex,

Sourceยง

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

Formats the value using the given formatter. Read more
ยง

impl<T> Value for Wrapping<T>
where T: Value,

ยง

fn record(&self, key: &Field, visitor: &mut dyn Visit)

Visits this value with the given Visitor.
Sourceยง

impl<T> WrappingAdd for Wrapping<T>
where T: WrappingAdd, Wrapping<T>: Add<Output = Wrapping<T>>,

Sourceยง

fn wrapping_add(&self, v: &Wrapping<T>) -> Wrapping<T>

Wrapping (modular) addition. Computes self + other, wrapping around at the boundary of the type.
Sourceยง

impl<T> WrappingMul for Wrapping<T>
where T: WrappingMul, Wrapping<T>: Mul<Output = Wrapping<T>>,

Sourceยง

fn wrapping_mul(&self, v: &Wrapping<T>) -> Wrapping<T>

Wrapping (modular) multiplication. Computes self * other, wrapping around at the boundary of the type.
Sourceยง

impl<T> WrappingNeg for Wrapping<T>
where T: WrappingNeg, Wrapping<T>: Neg<Output = Wrapping<T>>,

Sourceยง

fn wrapping_neg(&self) -> Wrapping<T>

Wrapping (modular) negation. Computes -self, wrapping around at the boundary of the type. Read more
Sourceยง

impl<T> WrappingShl for Wrapping<T>
where T: WrappingShl, Wrapping<T>: Shl<usize, Output = Wrapping<T>>,

Sourceยง

fn wrapping_shl(&self, rhs: u32) -> Wrapping<T>

Panic-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. Read more
Sourceยง

impl<T> WrappingShr for Wrapping<T>
where T: WrappingShr, Wrapping<T>: Shr<usize, Output = Wrapping<T>>,

Sourceยง

fn wrapping_shr(&self, rhs: u32) -> Wrapping<T>

Panic-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. Read more
Sourceยง

impl<T> WrappingSub for Wrapping<T>
where T: WrappingSub, Wrapping<T>: Sub<Output = Wrapping<T>>,

Sourceยง

fn wrapping_sub(&self, v: &Wrapping<T>) -> Wrapping<T>

Wrapping (modular) subtraction. Computes self - other, wrapping around at the boundary of the type.
Sourceยง

impl<T> Zero for Wrapping<T>
where T: Zero, Wrapping<T>: Add<Output = Wrapping<T>>,

Sourceยง

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
Sourceยง

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
Sourceยง

fn zero() -> Wrapping<T>

Returns the additive identity element of Self, 0. Read more
ยง

impl<Z> Zeroize for Wrapping<Z>
where Z: Zeroize,

ยง

fn zeroize(&mut self)

Zero out this object from memory using Rust intrinsics which ensure the zeroization operation is not โ€œoptimized awayโ€ by the compiler.
1.0.0 ยท Sourceยง

impl<T> Copy for Wrapping<T>
where T: Copy,

1.0.0 ยท Sourceยง

impl<T> Eq for Wrapping<T>
where T: Eq,

ยง

impl<T> Immutable for Wrapping<T>
where T: Immutable,

1.0.0 ยท Sourceยง

impl<T> StructuralPartialEq for Wrapping<T>

ยง

impl<T> Unaligned for Wrapping<T>
where T: Unaligned,

Sourceยง

impl<T> Unsigned for Wrapping<T>
where T: Unsigned, Wrapping<T>: Num,

Auto Trait Implementationsยง

ยง

impl<T> Freeze for Wrapping<T>
where T: Freeze,

ยง

impl<T> RefUnwindSafe for Wrapping<T>
where T: RefUnwindSafe,

ยง

impl<T> Send for Wrapping<T>
where T: Send,

ยง

impl<T> Sync for Wrapping<T>
where T: Sync,

ยง

impl<T> Unpin for Wrapping<T>
where T: Unpin,

ยง

impl<T> UnwindSafe for Wrapping<T>
where T: UnwindSafe,

Blanket Implementationsยง

Sourceยง

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S
where T: Real + Zero + Arithmetics + Clone, Swp: WhitePoint<T>, Dwp: WhitePoint<T>, D: AdaptFrom<S, Swp, Dwp, T>,

Sourceยง

fn adapt_into_using<M>(self, method: M) -> D
where M: TransformMatrix<T>,

Convert the source color to the destination color using the specified method.
Sourceยง

fn adapt_into(self) -> D

Convert the source color to the destination color using the bradford method by default.
Sourceยง

impl<T> Any for T
where T: 'static + ?Sized,

Sourceยง

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
ยง

impl<T> ArchivePointee for T

ยง

type ArchivedMetadata = ()

The archived version of the pointer metadata for this type.
ยง

fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata

Converts some archived metadata to the pointer metadata for itself.
Sourceยง

impl<T, C> ArraysFrom<C> for T
where C: IntoArrays<T>,

Sourceยง

fn arrays_from(colors: C) -> T

Cast a collection of colors into a collection of arrays.
Sourceยง

impl<T, C> ArraysInto<C> for T
where C: FromArrays<T>,

Sourceยง

fn arrays_into(self) -> C

Cast this collection of arrays into a collection of colors.
Sourceยง

impl<T> Borrow<T> for T
where T: ?Sized,

Sourceยง

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Sourceยง

impl<T> BorrowMut<T> for T
where T: ?Sized,

Sourceยง

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
ยง

impl<T> CallHasher for T
where T: Hash + ?Sized,

ยง

default fn get_hash<H, B>(value: &H, build_hasher: &B) -> u64
where H: Hash + ?Sized, B: BuildHasher,

Sourceยง

impl<WpParam, T, U> Cam16IntoUnclamped<WpParam, T> for U
where T: FromCam16Unclamped<WpParam, U>,

Sourceยง

type Scalar = <T as FromCam16Unclamped<WpParam, U>>::Scalar

The number type thatโ€™s used in parameters when converting.
Sourceยง

fn cam16_into_unclamped( self, parameters: BakedParameters<WpParam, <U as Cam16IntoUnclamped<WpParam, T>>::Scalar>, ) -> T

Converts self into C, using the provided parameters.
Sourceยง

impl<T> CloneToUninit for T
where T: Clone,

Sourceยง

unsafe fn clone_to_uninit(&self, dest: *mut u8)

๐Ÿ”ฌThis is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
ยง

impl<Q, K> Comparable<K> for Q
where Q: Ord + ?Sized, K: Borrow<Q> + ?Sized,

ยง

fn compare(&self, key: &K) -> Ordering

Compare self to key and return their ordering.
Sourceยง

impl<T, C> ComponentsFrom<C> for T
where C: IntoComponents<T>,

Sourceยง

fn components_from(colors: C) -> T

Cast a collection of colors into a collection of color components.
ยง

impl<F, W, T, D> Deserialize<With<T, W>, D> for F
where W: DeserializeWith<F, T, D>, D: Fallible + ?Sized, F: ?Sized,

ยง

fn deserialize( &self, deserializer: &mut D, ) -> Result<With<T, W>, <D as Fallible>::Error>

Deserializes using the given deserializer
ยง

impl<T> Downcast for T
where T: Any,

ยง

fn into_any(self: Box<T>) -> Box<dyn Any>

Converts Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.
ยง

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

Converts Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
ยง

fn as_any(&self) -> &(dyn Any + 'static)

Converts &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Anyโ€™s vtable from &Traitโ€™s.
ยง

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Converts &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Anyโ€™s vtable from &mut Traitโ€™s.
ยง

impl<T> DowncastSend for T
where T: Any + Send,

ยง

fn into_any_send(self: Box<T>) -> Box<dyn Any + Send>

Converts Box<Trait> (where Trait: DowncastSend) to Box<dyn Any + Send>, which can then be downcast into Box<ConcreteType> where ConcreteType implements Trait.
ยง

impl<T> DowncastSync for T
where T: Any + Send + Sync,

ยง

fn into_any_sync(self: Box<T>) -> Box<dyn Any + Send + Sync>

Converts Box<Trait> (where Trait: DowncastSync) to Box<dyn Any + Send + Sync>, which can then be downcast into Box<ConcreteType> where ConcreteType implements Trait.
ยง

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Send + Sync>

Converts Arc<Trait> (where Trait: DowncastSync) to Arc<Any>, which can then be downcast into Arc<ConcreteType> where ConcreteType implements Trait.
ยง

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

ยง

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
ยง

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

ยง

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Sourceยง

impl<T> From<T> for T

Sourceยง

fn from(t: T) -> T

Returns the argument unchanged.

Sourceยง

impl<T> FromAngle<T> for T

Sourceยง

fn from_angle(angle: T) -> T

Performs a conversion from angle.
ยง

impl<T> FromFormData for T

ยง

fn from_event(ev: &Event) -> Result<T, FromFormDataError>

Tries to deserialize the data, given only the submit event.
ยง

fn from_form_data(form_data: &FormData) -> Result<T, Error>

Tries to deserialize the data, given the actual form data.
ยง

impl<I> FromRadix10 for I
where I: Zero + One + AddAssign + MulAssign,

ยง

fn from_radix_10(text: &[u8]) -> (I, usize)

Parses an integer from a slice. Read more
ยง

impl<I> FromRadix10Signed for I

ยง

fn from_radix_10_signed(text: &[u8]) -> (I, usize)

Parses an integer from a slice. Read more
ยง

impl<I> FromRadix16 for I
where I: Zero + One + AddAssign + MulAssign,

ยง

fn from_radix_16(text: &[u8]) -> (I, usize)

Parses an integer from a slice. Read more
ยง

impl<T> FromRef<T> for T
where T: Clone,

ยง

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
ยง

impl<E, T, Request> FromReq<DeleteUrl, Request, E> for T
where Request: Req<E> + Send + 'static, T: DeserializeOwned, E: FromServerFnError,

ยง

async fn from_req(req: Request) -> Result<T, E>

Attempts to deserialize the arguments from a request.
ยง

impl<E, T, Request> FromReq<GetUrl, Request, E> for T
where Request: Req<E> + Send + 'static, T: DeserializeOwned, E: FromServerFnError,

ยง

async fn from_req(req: Request) -> Result<T, E>

Attempts to deserialize the arguments from a request.
ยง

impl<E, T, Request, Encoding> FromReq<Patch<Encoding>, Request, E> for T
where Request: Req<E> + Send + 'static, Encoding: Decodes<T>, E: FromServerFnError,

ยง

async fn from_req(req: Request) -> Result<T, E>

Attempts to deserialize the arguments from a request.
ยง

impl<E, T, Request> FromReq<PatchUrl, Request, E> for T
where Request: Req<E> + Send + 'static, T: DeserializeOwned, E: FromServerFnError,

ยง

async fn from_req(req: Request) -> Result<T, E>

Attempts to deserialize the arguments from a request.
ยง

impl<E, T, Request, Encoding> FromReq<Post<Encoding>, Request, E> for T
where Request: Req<E> + Send + 'static, Encoding: Decodes<T>, E: FromServerFnError,

ยง

async fn from_req(req: Request) -> Result<T, E>

Attempts to deserialize the arguments from a request.
ยง

impl<E, T, Request> FromReq<PostUrl, Request, E> for T
where Request: Req<E> + Send + 'static, T: DeserializeOwned, E: FromServerFnError,

ยง

async fn from_req(req: Request) -> Result<T, E>

Attempts to deserialize the arguments from a request.
ยง

impl<E, T, Request, Encoding> FromReq<Put<Encoding>, Request, E> for T
where Request: Req<E> + Send + 'static, Encoding: Decodes<T>, E: FromServerFnError,

ยง

async fn from_req(req: Request) -> Result<T, E>

Attempts to deserialize the arguments from a request.
ยง

impl<E, T, Request> FromReq<PutUrl, Request, E> for T
where Request: Req<E> + Send + 'static, T: DeserializeOwned, E: FromServerFnError,

ยง

async fn from_req(req: Request) -> Result<T, E>

Attempts to deserialize the arguments from a request.
ยง

impl<E, Encoding, Response, T> FromRes<Patch<Encoding>, Response, E> for T
where Response: ClientRes<E> + Send, Encoding: Decodes<T>, E: FromServerFnError,

ยง

async fn from_res(res: Response) -> Result<T, E>

Attempts to deserialize the outputs from a response.
ยง

impl<E, Encoding, Response, T> FromRes<Post<Encoding>, Response, E> for T
where Response: ClientRes<E> + Send, Encoding: Decodes<T>, E: FromServerFnError,

ยง

async fn from_res(res: Response) -> Result<T, E>

Attempts to deserialize the outputs from a response.
ยง

impl<E, Encoding, Response, T> FromRes<Put<Encoding>, Response, E> for T
where Response: ClientRes<E> + Send, Encoding: Decodes<T>, E: FromServerFnError,

ยง

async fn from_res(res: Response) -> Result<T, E>

Attempts to deserialize the outputs from a response.
Sourceยง

impl<T, U> FromStimulus<U> for T
where U: IntoStimulus<T>,

Sourceยง

fn from_stimulus(other: U) -> T

Converts other into Self, while performing the appropriate scaling, rounding and clamping.
Sourceยง

impl<T> Hexable for T
where T: Serialize + for<'de> Deserialize<'de>,

ยง

impl<T> Instrument for T

ยง

fn instrument(self, span: Span) -> Instrumented<Self> โ“˜

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
ยง

fn in_current_span(self) -> Instrumented<Self> โ“˜

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Sourceยง

impl<T, U> Into<U> for T
where U: From<T>,

Sourceยง

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Sourceยง

impl<T, U> IntoAngle<U> for T
where U: FromAngle<T>,

Sourceยง

fn into_angle(self) -> U

Performs a conversion into T.
Sourceยง

impl<WpParam, T, U> IntoCam16Unclamped<WpParam, T> for U
where T: Cam16FromUnclamped<WpParam, U>,

Sourceยง

type Scalar = <T as Cam16FromUnclamped<WpParam, U>>::Scalar

The number type thatโ€™s used in parameters when converting.
Sourceยง

fn into_cam16_unclamped( self, parameters: BakedParameters<WpParam, <U as IntoCam16Unclamped<WpParam, T>>::Scalar>, ) -> T

Converts self into C, using the provided parameters.
Sourceยง

impl<T, U> IntoColor<U> for T
where U: FromColor<T>,

Sourceยง

fn into_color(self) -> U

Convert into T with values clamped to the color defined bounds Read more
Sourceยง

impl<T, U> IntoColorUnclamped<U> for T
where U: FromColorUnclamped<T>,

Sourceยง

fn into_color_unclamped(self) -> U

Convert into T. The resulting color might be invalid in its color space Read more
Sourceยง

impl<T> IntoEither for T

Sourceยง

fn into_either(self, into_left: bool) -> Either<Self, Self> โ“˜

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Sourceยง

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> โ“˜
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
ยง

impl<E, T, Request> IntoReq<DeleteUrl, Request, E> for T
where Request: ClientReq<E>, T: Serialize + Send, E: FromServerFnError,

ยง

fn into_req(self, path: &str, accepts: &str) -> Result<Request, E>

Attempts to serialize the arguments into an HTTP request.
ยง

impl<E, T, Request> IntoReq<GetUrl, Request, E> for T
where Request: ClientReq<E>, T: Serialize + Send, E: FromServerFnError,

ยง

fn into_req(self, path: &str, accepts: &str) -> Result<Request, E>

Attempts to serialize the arguments into an HTTP request.
ยง

impl<E, T, Encoding, Request> IntoReq<Patch<Encoding>, Request, E> for T
where Request: ClientReq<E>, Encoding: Encodes<T>, E: FromServerFnError,

ยง

fn into_req(self, path: &str, accepts: &str) -> Result<Request, E>

Attempts to serialize the arguments into an HTTP request.
ยง

impl<E, T, Request> IntoReq<PatchUrl, Request, E> for T
where Request: ClientReq<E>, T: Serialize + Send, E: FromServerFnError,

ยง

fn into_req(self, path: &str, accepts: &str) -> Result<Request, E>

Attempts to serialize the arguments into an HTTP request.
ยง

impl<E, T, Encoding, Request> IntoReq<Post<Encoding>, Request, E> for T
where Request: ClientReq<E>, Encoding: Encodes<T>, E: FromServerFnError,

ยง

fn into_req(self, path: &str, accepts: &str) -> Result<Request, E>

Attempts to serialize the arguments into an HTTP request.
ยง

impl<E, T, Request> IntoReq<PostUrl, Request, E> for T
where Request: ClientReq<E>, T: Serialize + Send, E: FromServerFnError,

ยง

fn into_req(self, path: &str, accepts: &str) -> Result<Request, E>

Attempts to serialize the arguments into an HTTP request.
ยง

impl<E, T, Encoding, Request> IntoReq<Put<Encoding>, Request, E> for T
where Request: ClientReq<E>, Encoding: Encodes<T>, E: FromServerFnError,

ยง

fn into_req(self, path: &str, accepts: &str) -> Result<Request, E>

Attempts to serialize the arguments into an HTTP request.
ยง

impl<E, T, Request> IntoReq<PutUrl, Request, E> for T
where Request: ClientReq<E>, T: Serialize + Send, E: FromServerFnError,

ยง

fn into_req(self, path: &str, accepts: &str) -> Result<Request, E>

Attempts to serialize the arguments into an HTTP request.
ยง

impl<E, Response, Encoding, T> IntoRes<Patch<Encoding>, Response, E> for T
where Response: TryRes<E>, Encoding: Encodes<T>, E: FromServerFnError + Send, T: Send,

ยง

async fn into_res(self) -> Result<Response, E>

Attempts to serialize the output into an HTTP response.
ยง

impl<E, Response, Encoding, T> IntoRes<Post<Encoding>, Response, E> for T
where Response: TryRes<E>, Encoding: Encodes<T>, E: FromServerFnError + Send, T: Send,

ยง

async fn into_res(self) -> Result<Response, E>

Attempts to serialize the output into an HTTP response.
ยง

impl<E, Response, Encoding, T> IntoRes<Put<Encoding>, Response, E> for T
where Response: TryRes<E>, Encoding: Encodes<T>, E: FromServerFnError + Send, T: Send,

ยง

async fn into_res(self) -> Result<Response, E>

Attempts to serialize the output into an HTTP response.
Sourceยง

impl<T> IntoStimulus<T> for T

Sourceยง

fn into_stimulus(self) -> T

Converts self into T, while performing the appropriate scaling, rounding and clamping.
Sourceยง

impl<T> LowerBounded for T
where T: Bounded,

Sourceยง

fn min_value() -> T

Returns the smallest finite number this type can represent
ยง

impl<I> MaxNumDigits for I
where I: Bounded + Zero + DivAssign + Ord + Copy,

ยง

fn max_num_digits(radix: I) -> usize

Returns the maximum number of digits a nonnegative representation of I can have depending on radix.

ยง

fn max_num_digits_negative(radix: I) -> usize

Returns the maximum number of digits a negative representation of I can have depending on radix.

ยง

impl<T> Pointable for T

ยง

const ALIGN: usize

The alignment of pointer.
ยง

type Init = T

The type for initializers.
ยง

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
ยง

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
ยง

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
ยง

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
ยง

impl<T> Pointee for T

ยง

type Metadata = ()

The type for metadata in pointers and references to Self.
ยง

impl<T> PolicyExt for T
where T: ?Sized,

ยง

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns [Action::Follow] only if self and other return Action::Follow. Read more
ยง

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns [Action::Follow] if either self or other returns Action::Follow. Read more
Sourceยง

impl<T> Same for T

Sourceยง

type Output = T

Should always be Self
ยง

impl<T> SerializableKey for T

ยง

fn ser_key(&self) -> String

Serializes the key to a unique string. Read more
ยง

impl<T> StorageAccess<T> for T

ยง

fn as_borrowed(&self) -> &T

Borrows the value.
ยง

fn into_taken(self) -> T

Takes the value.
Sourceยง

impl<T> ToOwned for T
where T: Clone,

Sourceยง

type Owned = T

The resulting type after obtaining ownership.
Sourceยง

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Sourceยง

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Sourceยง

impl<T> ToString for T
where T: Display + ?Sized,

Sourceยง

fn to_string(&self) -> String

Converts the given value to a String. Read more
ยง

impl<T> ToStringFallible for T
where T: Display,

ยง

fn try_to_string(&self) -> Result<String, TryReserveError>

ToString::to_string, but without panic on OOM.

Sourceยง

impl<T, C> TryComponentsInto<C> for T
where C: TryFromComponents<T>,

Sourceยง

type Error = <C as TryFromComponents<T>>::Error

The error for when try_into_colors fails to cast.
Sourceยง

fn try_components_into(self) -> Result<C, <T as TryComponentsInto<C>>::Error>

Try to cast this collection of color components into a collection of colors. Read more
Sourceยง

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Sourceยง

type Error = Infallible

The type returned in the event of a conversion error.
Sourceยง

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Sourceยง

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Sourceยง

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

The type returned in the event of a conversion error.
Sourceยง

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Sourceยง

impl<T, U> TryIntoColor<U> for T
where U: TryFromColor<T>,

Sourceยง

fn try_into_color(self) -> Result<U, OutOfBounds<U>>

Convert into T, returning ok if the color is inside of its defined range, otherwise an OutOfBounds error is returned which contains the unclamped color. Read more
Sourceยง

impl<C, U> UintsFrom<C> for U
where C: IntoUints<U>,

Sourceยง

fn uints_from(colors: C) -> U

Cast a collection of colors into a collection of unsigned integers.
Sourceยง

impl<C, U> UintsInto<C> for U
where C: FromUints<U>,

Sourceยง

fn uints_into(self) -> C

Cast this collection of unsigned integers into a collection of colors.
Sourceยง

impl<T> UpperBounded for T
where T: Bounded,

Sourceยง

fn max_value() -> T

Returns the largest finite number this type can represent
ยง

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

ยง

fn vzip(self) -> V

ยง

impl<T> WithSubscriber for T

ยง

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> โ“˜
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
ยง

fn with_current_subscriber(self) -> WithDispatch<Self> โ“˜

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
Sourceยง

impl<T> Arithmetics for T
where T: Neg<Output = T> + Add<Output = T, Output = T> + for<'a> Add<&'a T> + Mul<Output = T, Output = T> + for<'a> Sub<&'a T, Output = T, Output = T> + for<'a> Mul<&'a T> + Div<Output = T, Output = T> + for<'a> Div<&'a T> + Sub,

Sourceยง

impl<T> BitOps for T
where T: Not<Output = T> + BitOr<Output = T, Output = T> + for<'a> BitAnd<&'a T, Output = T, Output = T> + BitAnd + for<'a> BitOr<&'a T> + BitXor<Output = T, Output = T> + for<'a> BitXor<&'a T>,

Sourceยง

impl<T> CondSerialize for T
where T: Serialize,

Sourceยง

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

ยง

impl<T> ErasedDestructor for T
where T: 'static,

ยง

impl<T> Fruit for T
where T: Send + Downcast,

Sourceยง

impl<T> NumAssign for T
where T: Num + NumAssignOps,

Sourceยง

impl<T, Rhs> NumAssignOps<Rhs> for T
where T: AddAssign<Rhs> + SubAssign<Rhs> + MulAssign<Rhs> + DivAssign<Rhs> + RemAssign<Rhs>,

Sourceยง

impl<T> NumAssignRef for T
where T: NumAssign + for<'r> NumAssignOps<&'r T>,

Sourceยง

impl<T, Rhs, Output> NumOps<Rhs, Output> for T
where T: Sub<Rhs, Output = Output> + Mul<Rhs, Output = Output> + Div<Rhs, Output = Output> + Add<Rhs, Output = Output> + Rem<Rhs, Output = Output>,

Sourceยง

impl<T> NumRef for T
where T: Num + for<'r> NumOps<&'r T>,

Sourceยง

impl<T, Base> RefNum<Base> for T
where T: NumOps<Base, Base> + for<'r> NumOps<&'r Base, Base>,