Struct core::num::Wrapping1.0.0 [] [src]

pub struct Wrapping<T>(pub T);

Provides intentionally-wrapped arithmetic on T.

Operations like + on u32 values is 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.

Examples

fn main() { use std::num::Wrapping; let zero = Wrapping(0u32); let one = Wrapping(1u32); assert_eq!(std::u32::MAX, (zero - one).0); }
use std::num::Wrapping;

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

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

Trait Implementations

impl Shl<usize> for Wrapping<u8>
[src]

type Output = Wrapping<u8>

The resulting type after applying the << operator

fn shl(self, other: usize) -> Wrapping<u8>

The method for the << operator

impl ShlAssign<usize> for Wrapping<u8>
1.7.0
[src]

fn shl_assign(&mut self, other: usize)

The method for the <<= operator

impl Shr<usize> for Wrapping<u8>
[src]

type Output = Wrapping<u8>

The resulting type after applying the >> operator

fn shr(self, other: usize) -> Wrapping<u8>

The method for the >> operator

impl ShrAssign<usize> for Wrapping<u8>
1.7.0
[src]

fn shr_assign(&mut self, other: usize)

The method for the >>= operator

impl Shl<usize> for Wrapping<u16>
[src]

type Output = Wrapping<u16>

The resulting type after applying the << operator

fn shl(self, other: usize) -> Wrapping<u16>

The method for the << operator

impl ShlAssign<usize> for Wrapping<u16>
1.7.0
[src]

fn shl_assign(&mut self, other: usize)

The method for the <<= operator

impl Shr<usize> for Wrapping<u16>
[src]

type Output = Wrapping<u16>

The resulting type after applying the >> operator

fn shr(self, other: usize) -> Wrapping<u16>

The method for the >> operator

impl ShrAssign<usize> for Wrapping<u16>
1.7.0
[src]

fn shr_assign(&mut self, other: usize)

The method for the >>= operator

impl Shl<usize> for Wrapping<u32>
[src]

type Output = Wrapping<u32>

The resulting type after applying the << operator

fn shl(self, other: usize) -> Wrapping<u32>

The method for the << operator

impl ShlAssign<usize> for Wrapping<u32>
1.7.0
[src]

fn shl_assign(&mut self, other: usize)

The method for the <<= operator

impl Shr<usize> for Wrapping<u32>
[src]

type Output = Wrapping<u32>

The resulting type after applying the >> operator

fn shr(self, other: usize) -> Wrapping<u32>

The method for the >> operator

impl ShrAssign<usize> for Wrapping<u32>
1.7.0
[src]

fn shr_assign(&mut self, other: usize)

The method for the >>= operator

impl Shl<usize> for Wrapping<u64>
[src]

type Output = Wrapping<u64>

The resulting type after applying the << operator

fn shl(self, other: usize) -> Wrapping<u64>

The method for the << operator

impl ShlAssign<usize> for Wrapping<u64>
1.7.0
[src]

fn shl_assign(&mut self, other: usize)

The method for the <<= operator

impl Shr<usize> for Wrapping<u64>
[src]

type Output = Wrapping<u64>

The resulting type after applying the >> operator

fn shr(self, other: usize) -> Wrapping<u64>

The method for the >> operator

impl ShrAssign<usize> for Wrapping<u64>
1.7.0
[src]

fn shr_assign(&mut self, other: usize)

The method for the >>= operator

impl Shl<usize> for Wrapping<usize>
[src]

type Output = Wrapping<usize>

The resulting type after applying the << operator

fn shl(self, other: usize) -> Wrapping<usize>

The method for the << operator

impl ShlAssign<usize> for Wrapping<usize>
1.7.0
[src]

fn shl_assign(&mut self, other: usize)

The method for the <<= operator

impl Shr<usize> for Wrapping<usize>
[src]

type Output = Wrapping<usize>

The resulting type after applying the >> operator

fn shr(self, other: usize) -> Wrapping<usize>

The method for the >> operator

impl ShrAssign<usize> for Wrapping<usize>
1.7.0
[src]

fn shr_assign(&mut self, other: usize)

The method for the >>= operator

impl Shl<usize> for Wrapping<i8>
[src]

type Output = Wrapping<i8>

The resulting type after applying the << operator

fn shl(self, other: usize) -> Wrapping<i8>

The method for the << operator

impl ShlAssign<usize> for Wrapping<i8>
1.7.0
[src]

fn shl_assign(&mut self, other: usize)

The method for the <<= operator

impl Shr<usize> for Wrapping<i8>
[src]

type Output = Wrapping<i8>

The resulting type after applying the >> operator

fn shr(self, other: usize) -> Wrapping<i8>

The method for the >> operator

impl ShrAssign<usize> for Wrapping<i8>
1.7.0
[src]

fn shr_assign(&mut self, other: usize)

The method for the >>= operator

impl Shl<usize> for Wrapping<i16>
[src]

type Output = Wrapping<i16>

The resulting type after applying the << operator

fn shl(self, other: usize) -> Wrapping<i16>

The method for the << operator

impl ShlAssign<usize> for Wrapping<i16>
1.7.0
[src]

fn shl_assign(&mut self, other: usize)

The method for the <<= operator

impl Shr<usize> for Wrapping<i16>
[src]

type Output = Wrapping<i16>

The resulting type after applying the >> operator

fn shr(self, other: usize) -> Wrapping<i16>

The method for the >> operator

impl ShrAssign<usize> for Wrapping<i16>
1.7.0
[src]

fn shr_assign(&mut self, other: usize)

The method for the >>= operator

impl Shl<usize> for Wrapping<i32>
[src]

type Output = Wrapping<i32>

The resulting type after applying the << operator

fn shl(self, other: usize) -> Wrapping<i32>

The method for the << operator

impl ShlAssign<usize> for Wrapping<i32>
1.7.0
[src]

fn shl_assign(&mut self, other: usize)

The method for the <<= operator

impl Shr<usize> for Wrapping<i32>
[src]

type Output = Wrapping<i32>

The resulting type after applying the >> operator

fn shr(self, other: usize) -> Wrapping<i32>

The method for the >> operator

impl ShrAssign<usize> for Wrapping<i32>
1.7.0
[src]

fn shr_assign(&mut self, other: usize)

The method for the >>= operator

impl Shl<usize> for Wrapping<i64>
[src]

type Output = Wrapping<i64>

The resulting type after applying the << operator

fn shl(self, other: usize) -> Wrapping<i64>

The method for the << operator

impl ShlAssign<usize> for Wrapping<i64>
1.7.0
[src]

fn shl_assign(&mut self, other: usize)

The method for the <<= operator

impl Shr<usize> for Wrapping<i64>
[src]

type Output = Wrapping<i64>

The resulting type after applying the >> operator

fn shr(self, other: usize) -> Wrapping<i64>

The method for the >> operator

impl ShrAssign<usize> for Wrapping<i64>
1.7.0
[src]

fn shr_assign(&mut self, other: usize)

The method for the >>= operator

impl Shl<usize> for Wrapping<isize>
[src]

type Output = Wrapping<isize>

The resulting type after applying the << operator

fn shl(self, other: usize) -> Wrapping<isize>

The method for the << operator

impl ShlAssign<usize> for Wrapping<isize>
1.7.0
[src]

fn shl_assign(&mut self, other: usize)

The method for the <<= operator

impl Shr<usize> for Wrapping<isize>
[src]

type Output = Wrapping<isize>

The resulting type after applying the >> operator

fn shr(self, other: usize) -> Wrapping<isize>

The method for the >> operator

impl ShrAssign<usize> for Wrapping<isize>
1.7.0
[src]

fn shr_assign(&mut self, other: usize)

The method for the >>= operator

impl Add for Wrapping<usize>
[src]

type Output = Wrapping<usize>

The resulting type after applying the + operator

fn add(self, other: Wrapping<usize>) -> Wrapping<usize>

The method for the + operator

impl AddAssign for Wrapping<usize>
1.8.0
[src]

fn add_assign(&mut self, other: Wrapping<usize>)

The method for the += operator

impl Sub for Wrapping<usize>
[src]

type Output = Wrapping<usize>

The resulting type after applying the - operator

fn sub(self, other: Wrapping<usize>) -> Wrapping<usize>

The method for the - operator

impl SubAssign for Wrapping<usize>
1.8.0
[src]

fn sub_assign(&mut self, other: Wrapping<usize>)

The method for the -= operator

impl Mul for Wrapping<usize>
[src]

type Output = Wrapping<usize>

The resulting type after applying the * operator

fn mul(self, other: Wrapping<usize>) -> Wrapping<usize>

The method for the * operator

impl MulAssign for Wrapping<usize>
1.8.0
[src]

fn mul_assign(&mut self, other: Wrapping<usize>)

The method for the *= operator

impl Div for Wrapping<usize>
1.3.0
[src]

type Output = Wrapping<usize>

The resulting type after applying the / operator

fn div(self, other: Wrapping<usize>) -> Wrapping<usize>

The method for the / operator

impl DivAssign for Wrapping<usize>
1.8.0
[src]

fn div_assign(&mut self, other: Wrapping<usize>)

The method for the /= operator

impl Rem for Wrapping<usize>
1.7.0
[src]

type Output = Wrapping<usize>

The resulting type after applying the % operator

fn rem(self, other: Wrapping<usize>) -> Wrapping<usize>

The method for the % operator

impl RemAssign for Wrapping<usize>
1.8.0
[src]

fn rem_assign(&mut self, other: Wrapping<usize>)

The method for the %= operator

impl Not for Wrapping<usize>
[src]

type Output = Wrapping<usize>

The resulting type after applying the ! operator

fn not(self) -> Wrapping<usize>

The method for the unary ! operator

impl BitXor for Wrapping<usize>
[src]

type Output = Wrapping<usize>

The resulting type after applying the ^ operator

fn bitxor(self, other: Wrapping<usize>) -> Wrapping<usize>

The method for the ^ operator

impl BitXorAssign for Wrapping<usize>
1.8.0
[src]

fn bitxor_assign(&mut self, other: Wrapping<usize>)

The method for the ^= operator

impl BitOr for Wrapping<usize>
[src]

type Output = Wrapping<usize>

The resulting type after applying the | operator

fn bitor(self, other: Wrapping<usize>) -> Wrapping<usize>

The method for the | operator

impl BitOrAssign for Wrapping<usize>
1.8.0
[src]

fn bitor_assign(&mut self, other: Wrapping<usize>)

The method for the |= operator

impl BitAnd for Wrapping<usize>
[src]

type Output = Wrapping<usize>

The resulting type after applying the & operator

fn bitand(self, other: Wrapping<usize>) -> Wrapping<usize>

The method for the & operator

impl BitAndAssign for Wrapping<usize>
1.8.0
[src]

fn bitand_assign(&mut self, other: Wrapping<usize>)

The method for the & operator

impl Neg for Wrapping<usize>
1.10.0
[src]

type Output = Self

The resulting type after applying the - operator

fn neg(self) -> Self

The method for the unary - operator

impl Add for Wrapping<u8>
[src]

type Output = Wrapping<u8>

The resulting type after applying the + operator

fn add(self, other: Wrapping<u8>) -> Wrapping<u8>

The method for the + operator

impl AddAssign for Wrapping<u8>
1.8.0
[src]

fn add_assign(&mut self, other: Wrapping<u8>)

The method for the += operator

impl Sub for Wrapping<u8>
[src]

type Output = Wrapping<u8>

The resulting type after applying the - operator

fn sub(self, other: Wrapping<u8>) -> Wrapping<u8>

The method for the - operator

impl SubAssign for Wrapping<u8>
1.8.0
[src]

fn sub_assign(&mut self, other: Wrapping<u8>)

The method for the -= operator

impl Mul for Wrapping<u8>
[src]

type Output = Wrapping<u8>

The resulting type after applying the * operator

fn mul(self, other: Wrapping<u8>) -> Wrapping<u8>

The method for the * operator

impl MulAssign for Wrapping<u8>
1.8.0
[src]

fn mul_assign(&mut self, other: Wrapping<u8>)

The method for the *= operator

impl Div for Wrapping<u8>
1.3.0
[src]

type Output = Wrapping<u8>

The resulting type after applying the / operator

fn div(self, other: Wrapping<u8>) -> Wrapping<u8>

The method for the / operator

impl DivAssign for Wrapping<u8>
1.8.0
[src]

fn div_assign(&mut self, other: Wrapping<u8>)

The method for the /= operator

impl Rem for Wrapping<u8>
1.7.0
[src]

type Output = Wrapping<u8>

The resulting type after applying the % operator

fn rem(self, other: Wrapping<u8>) -> Wrapping<u8>

The method for the % operator

impl RemAssign for Wrapping<u8>
1.8.0
[src]

fn rem_assign(&mut self, other: Wrapping<u8>)

The method for the %= operator

impl Not for Wrapping<u8>
[src]

type Output = Wrapping<u8>

The resulting type after applying the ! operator

fn not(self) -> Wrapping<u8>

The method for the unary ! operator

impl BitXor for Wrapping<u8>
[src]

type Output = Wrapping<u8>

The resulting type after applying the ^ operator

fn bitxor(self, other: Wrapping<u8>) -> Wrapping<u8>

The method for the ^ operator

impl BitXorAssign for Wrapping<u8>
1.8.0
[src]

fn bitxor_assign(&mut self, other: Wrapping<u8>)

The method for the ^= operator

impl BitOr for Wrapping<u8>
[src]

type Output = Wrapping<u8>

The resulting type after applying the | operator

fn bitor(self, other: Wrapping<u8>) -> Wrapping<u8>

The method for the | operator

impl BitOrAssign for Wrapping<u8>
1.8.0
[src]

fn bitor_assign(&mut self, other: Wrapping<u8>)

The method for the |= operator

impl BitAnd for Wrapping<u8>
[src]

type Output = Wrapping<u8>

The resulting type after applying the & operator

fn bitand(self, other: Wrapping<u8>) -> Wrapping<u8>

The method for the & operator

impl BitAndAssign for Wrapping<u8>
1.8.0
[src]

fn bitand_assign(&mut self, other: Wrapping<u8>)

The method for the & operator

impl Neg for Wrapping<u8>
1.10.0
[src]

type Output = Self

The resulting type after applying the - operator

fn neg(self) -> Self

The method for the unary - operator

impl Add for Wrapping<u16>
[src]

type Output = Wrapping<u16>

The resulting type after applying the + operator

fn add(self, other: Wrapping<u16>) -> Wrapping<u16>

The method for the + operator

impl AddAssign for Wrapping<u16>
1.8.0
[src]

fn add_assign(&mut self, other: Wrapping<u16>)

The method for the += operator

impl Sub for Wrapping<u16>
[src]

type Output = Wrapping<u16>

The resulting type after applying the - operator

fn sub(self, other: Wrapping<u16>) -> Wrapping<u16>

The method for the - operator

impl SubAssign for Wrapping<u16>
1.8.0
[src]

fn sub_assign(&mut self, other: Wrapping<u16>)

The method for the -= operator

impl Mul for Wrapping<u16>
[src]

type Output = Wrapping<u16>

The resulting type after applying the * operator

fn mul(self, other: Wrapping<u16>) -> Wrapping<u16>

The method for the * operator

impl MulAssign for Wrapping<u16>
1.8.0
[src]

fn mul_assign(&mut self, other: Wrapping<u16>)

The method for the *= operator

impl Div for Wrapping<u16>
1.3.0
[src]

type Output = Wrapping<u16>

The resulting type after applying the / operator

fn div(self, other: Wrapping<u16>) -> Wrapping<u16>

The method for the / operator

impl DivAssign for Wrapping<u16>
1.8.0
[src]

fn div_assign(&mut self, other: Wrapping<u16>)

The method for the /= operator

impl Rem for Wrapping<u16>
1.7.0
[src]

type Output = Wrapping<u16>

The resulting type after applying the % operator

fn rem(self, other: Wrapping<u16>) -> Wrapping<u16>

The method for the % operator

impl RemAssign for Wrapping<u16>
1.8.0
[src]

fn rem_assign(&mut self, other: Wrapping<u16>)

The method for the %= operator

impl Not for Wrapping<u16>
[src]

type Output = Wrapping<u16>

The resulting type after applying the ! operator

fn not(self) -> Wrapping<u16>

The method for the unary ! operator

impl BitXor for Wrapping<u16>
[src]

type Output = Wrapping<u16>

The resulting type after applying the ^ operator

fn bitxor(self, other: Wrapping<u16>) -> Wrapping<u16>

The method for the ^ operator

impl BitXorAssign for Wrapping<u16>
1.8.0
[src]

fn bitxor_assign(&mut self, other: Wrapping<u16>)

The method for the ^= operator

impl BitOr for Wrapping<u16>
[src]

type Output = Wrapping<u16>

The resulting type after applying the | operator

fn bitor(self, other: Wrapping<u16>) -> Wrapping<u16>

The method for the | operator

impl BitOrAssign for Wrapping<u16>
1.8.0
[src]

fn bitor_assign(&mut self, other: Wrapping<u16>)

The method for the |= operator

impl BitAnd for Wrapping<u16>
[src]

type Output = Wrapping<u16>

The resulting type after applying the & operator

fn bitand(self, other: Wrapping<u16>) -> Wrapping<u16>

The method for the & operator

impl BitAndAssign for Wrapping<u16>
1.8.0
[src]

fn bitand_assign(&mut self, other: Wrapping<u16>)

The method for the & operator

impl Neg for Wrapping<u16>
1.10.0
[src]

type Output = Self

The resulting type after applying the - operator

fn neg(self) -> Self

The method for the unary - operator

impl Add for Wrapping<u32>
[src]

type Output = Wrapping<u32>

The resulting type after applying the + operator

fn add(self, other: Wrapping<u32>) -> Wrapping<u32>

The method for the + operator

impl AddAssign for Wrapping<u32>
1.8.0
[src]

fn add_assign(&mut self, other: Wrapping<u32>)

The method for the += operator

impl Sub for Wrapping<u32>
[src]

type Output = Wrapping<u32>

The resulting type after applying the - operator

fn sub(self, other: Wrapping<u32>) -> Wrapping<u32>

The method for the - operator

impl SubAssign for Wrapping<u32>
1.8.0
[src]

fn sub_assign(&mut self, other: Wrapping<u32>)

The method for the -= operator

impl Mul for Wrapping<u32>
[src]

type Output = Wrapping<u32>

The resulting type after applying the * operator

fn mul(self, other: Wrapping<u32>) -> Wrapping<u32>

The method for the * operator

impl MulAssign for Wrapping<u32>
1.8.0
[src]

fn mul_assign(&mut self, other: Wrapping<u32>)

The method for the *= operator

impl Div for Wrapping<u32>
1.3.0
[src]

type Output = Wrapping<u32>

The resulting type after applying the / operator

fn div(self, other: Wrapping<u32>) -> Wrapping<u32>

The method for the / operator

impl DivAssign for Wrapping<u32>
1.8.0
[src]

fn div_assign(&mut self, other: Wrapping<u32>)

The method for the /= operator

impl Rem for Wrapping<u32>
1.7.0
[src]

type Output = Wrapping<u32>

The resulting type after applying the % operator

fn rem(self, other: Wrapping<u32>) -> Wrapping<u32>

The method for the % operator

impl RemAssign for Wrapping<u32>
1.8.0
[src]

fn rem_assign(&mut self, other: Wrapping<u32>)

The method for the %= operator

impl Not for Wrapping<u32>
[src]

type Output = Wrapping<u32>

The resulting type after applying the ! operator

fn not(self) -> Wrapping<u32>

The method for the unary ! operator

impl BitXor for Wrapping<u32>
[src]

type Output = Wrapping<u32>

The resulting type after applying the ^ operator

fn bitxor(self, other: Wrapping<u32>) -> Wrapping<u32>

The method for the ^ operator

impl BitXorAssign for Wrapping<u32>
1.8.0
[src]

fn bitxor_assign(&mut self, other: Wrapping<u32>)

The method for the ^= operator

impl BitOr for Wrapping<u32>
[src]

type Output = Wrapping<u32>

The resulting type after applying the | operator

fn bitor(self, other: Wrapping<u32>) -> Wrapping<u32>

The method for the | operator

impl BitOrAssign for Wrapping<u32>
1.8.0
[src]

fn bitor_assign(&mut self, other: Wrapping<u32>)

The method for the |= operator

impl BitAnd for Wrapping<u32>
[src]

type Output = Wrapping<u32>

The resulting type after applying the & operator

fn bitand(self, other: Wrapping<u32>) -> Wrapping<u32>

The method for the & operator

impl BitAndAssign for Wrapping<u32>
1.8.0
[src]

fn bitand_assign(&mut self, other: Wrapping<u32>)

The method for the & operator

impl Neg for Wrapping<u32>
1.10.0
[src]

type Output = Self

The resulting type after applying the - operator

fn neg(self) -> Self

The method for the unary - operator

impl Add for Wrapping<u64>
[src]

type Output = Wrapping<u64>

The resulting type after applying the + operator

fn add(self, other: Wrapping<u64>) -> Wrapping<u64>

The method for the + operator

impl AddAssign for Wrapping<u64>
1.8.0
[src]

fn add_assign(&mut self, other: Wrapping<u64>)

The method for the += operator

impl Sub for Wrapping<u64>
[src]

type Output = Wrapping<u64>

The resulting type after applying the - operator

fn sub(self, other: Wrapping<u64>) -> Wrapping<u64>

The method for the - operator

impl SubAssign for Wrapping<u64>
1.8.0
[src]

fn sub_assign(&mut self, other: Wrapping<u64>)

The method for the -= operator

impl Mul for Wrapping<u64>
[src]

type Output = Wrapping<u64>

The resulting type after applying the * operator

fn mul(self, other: Wrapping<u64>) -> Wrapping<u64>

The method for the * operator

impl MulAssign for Wrapping<u64>
1.8.0
[src]

fn mul_assign(&mut self, other: Wrapping<u64>)

The method for the *= operator

impl Div for Wrapping<u64>
1.3.0
[src]

type Output = Wrapping<u64>

The resulting type after applying the / operator

fn div(self, other: Wrapping<u64>) -> Wrapping<u64>

The method for the / operator

impl DivAssign for Wrapping<u64>
1.8.0
[src]

fn div_assign(&mut self, other: Wrapping<u64>)

The method for the /= operator

impl Rem for Wrapping<u64>
1.7.0
[src]

type Output = Wrapping<u64>

The resulting type after applying the % operator

fn rem(self, other: Wrapping<u64>) -> Wrapping<u64>

The method for the % operator

impl RemAssign for Wrapping<u64>
1.8.0
[src]

fn rem_assign(&mut self, other: Wrapping<u64>)

The method for the %= operator

impl Not for Wrapping<u64>
[src]

type Output = Wrapping<u64>

The resulting type after applying the ! operator

fn not(self) -> Wrapping<u64>

The method for the unary ! operator

impl BitXor for Wrapping<u64>
[src]

type Output = Wrapping<u64>

The resulting type after applying the ^ operator

fn bitxor(self, other: Wrapping<u64>) -> Wrapping<u64>

The method for the ^ operator

impl BitXorAssign for Wrapping<u64>
1.8.0
[src]

fn bitxor_assign(&mut self, other: Wrapping<u64>)

The method for the ^= operator

impl BitOr for Wrapping<u64>
[src]

type Output = Wrapping<u64>

The resulting type after applying the | operator

fn bitor(self, other: Wrapping<u64>) -> Wrapping<u64>

The method for the | operator

impl BitOrAssign for Wrapping<u64>
1.8.0
[src]

fn bitor_assign(&mut self, other: Wrapping<u64>)

The method for the |= operator

impl BitAnd for Wrapping<u64>
[src]

type Output = Wrapping<u64>

The resulting type after applying the & operator

fn bitand(self, other: Wrapping<u64>) -> Wrapping<u64>

The method for the & operator

impl BitAndAssign for Wrapping<u64>
1.8.0
[src]

fn bitand_assign(&mut self, other: Wrapping<u64>)

The method for the & operator

impl Neg for Wrapping<u64>
1.10.0
[src]

type Output = Self

The resulting type after applying the - operator

fn neg(self) -> Self

The method for the unary - operator

impl Add for Wrapping<isize>
[src]

type Output = Wrapping<isize>

The resulting type after applying the + operator

fn add(self, other: Wrapping<isize>) -> Wrapping<isize>

The method for the + operator

impl AddAssign for Wrapping<isize>
1.8.0
[src]

fn add_assign(&mut self, other: Wrapping<isize>)

The method for the += operator

impl Sub for Wrapping<isize>
[src]

type Output = Wrapping<isize>

The resulting type after applying the - operator

fn sub(self, other: Wrapping<isize>) -> Wrapping<isize>

The method for the - operator

impl SubAssign for Wrapping<isize>
1.8.0
[src]

fn sub_assign(&mut self, other: Wrapping<isize>)

The method for the -= operator

impl Mul for Wrapping<isize>
[src]

type Output = Wrapping<isize>

The resulting type after applying the * operator

fn mul(self, other: Wrapping<isize>) -> Wrapping<isize>

The method for the * operator

impl MulAssign for Wrapping<isize>
1.8.0
[src]

fn mul_assign(&mut self, other: Wrapping<isize>)

The method for the *= operator

impl Div for Wrapping<isize>
1.3.0
[src]

type Output = Wrapping<isize>

The resulting type after applying the / operator

fn div(self, other: Wrapping<isize>) -> Wrapping<isize>

The method for the / operator

impl DivAssign for Wrapping<isize>
1.8.0
[src]

fn div_assign(&mut self, other: Wrapping<isize>)

The method for the /= operator

impl Rem for Wrapping<isize>
1.7.0
[src]

type Output = Wrapping<isize>

The resulting type after applying the % operator

fn rem(self, other: Wrapping<isize>) -> Wrapping<isize>

The method for the % operator

impl RemAssign for Wrapping<isize>
1.8.0
[src]

fn rem_assign(&mut self, other: Wrapping<isize>)

The method for the %= operator

impl Not for Wrapping<isize>
[src]

type Output = Wrapping<isize>

The resulting type after applying the ! operator

fn not(self) -> Wrapping<isize>

The method for the unary ! operator

impl BitXor for Wrapping<isize>
[src]

type Output = Wrapping<isize>

The resulting type after applying the ^ operator

fn bitxor(self, other: Wrapping<isize>) -> Wrapping<isize>

The method for the ^ operator

impl BitXorAssign for Wrapping<isize>
1.8.0
[src]

fn bitxor_assign(&mut self, other: Wrapping<isize>)

The method for the ^= operator

impl BitOr for Wrapping<isize>
[src]

type Output = Wrapping<isize>

The resulting type after applying the | operator

fn bitor(self, other: Wrapping<isize>) -> Wrapping<isize>

The method for the | operator

impl BitOrAssign for Wrapping<isize>
1.8.0
[src]

fn bitor_assign(&mut self, other: Wrapping<isize>)

The method for the |= operator

impl BitAnd for Wrapping<isize>
[src]

type Output = Wrapping<isize>

The resulting type after applying the & operator

fn bitand(self, other: Wrapping<isize>) -> Wrapping<isize>

The method for the & operator

impl BitAndAssign for Wrapping<isize>
1.8.0
[src]

fn bitand_assign(&mut self, other: Wrapping<isize>)

The method for the & operator

impl Neg for Wrapping<isize>
1.10.0
[src]

type Output = Self

The resulting type after applying the - operator

fn neg(self) -> Self

The method for the unary - operator

impl Add for Wrapping<i8>
[src]

type Output = Wrapping<i8>

The resulting type after applying the + operator

fn add(self, other: Wrapping<i8>) -> Wrapping<i8>

The method for the + operator

impl AddAssign for Wrapping<i8>
1.8.0
[src]

fn add_assign(&mut self, other: Wrapping<i8>)

The method for the += operator

impl Sub for Wrapping<i8>
[src]

type Output = Wrapping<i8>

The resulting type after applying the - operator

fn sub(self, other: Wrapping<i8>) -> Wrapping<i8>

The method for the - operator

impl SubAssign for Wrapping<i8>
1.8.0
[src]

fn sub_assign(&mut self, other: Wrapping<i8>)

The method for the -= operator

impl Mul for Wrapping<i8>
[src]

type Output = Wrapping<i8>

The resulting type after applying the * operator

fn mul(self, other: Wrapping<i8>) -> Wrapping<i8>

The method for the * operator

impl MulAssign for Wrapping<i8>
1.8.0
[src]

fn mul_assign(&mut self, other: Wrapping<i8>)

The method for the *= operator

impl Div for Wrapping<i8>
1.3.0
[src]

type Output = Wrapping<i8>

The resulting type after applying the / operator

fn div(self, other: Wrapping<i8>) -> Wrapping<i8>

The method for the / operator

impl DivAssign for Wrapping<i8>
1.8.0
[src]

fn div_assign(&mut self, other: Wrapping<i8>)

The method for the /= operator

impl Rem for Wrapping<i8>
1.7.0
[src]

type Output = Wrapping<i8>

The resulting type after applying the % operator

fn rem(self, other: Wrapping<i8>) -> Wrapping<i8>

The method for the % operator

impl RemAssign for Wrapping<i8>
1.8.0
[src]

fn rem_assign(&mut self, other: Wrapping<i8>)

The method for the %= operator

impl Not for Wrapping<i8>
[src]

type Output = Wrapping<i8>

The resulting type after applying the ! operator

fn not(self) -> Wrapping<i8>

The method for the unary ! operator

impl BitXor for Wrapping<i8>
[src]

type Output = Wrapping<i8>

The resulting type after applying the ^ operator

fn bitxor(self, other: Wrapping<i8>) -> Wrapping<i8>

The method for the ^ operator

impl BitXorAssign for Wrapping<i8>
1.8.0
[src]

fn bitxor_assign(&mut self, other: Wrapping<i8>)

The method for the ^= operator

impl BitOr for Wrapping<i8>
[src]

type Output = Wrapping<i8>

The resulting type after applying the | operator

fn bitor(self, other: Wrapping<i8>) -> Wrapping<i8>

The method for the | operator

impl BitOrAssign for Wrapping<i8>
1.8.0
[src]

fn bitor_assign(&mut self, other: Wrapping<i8>)

The method for the |= operator

impl BitAnd for Wrapping<i8>
[src]

type Output = Wrapping<i8>

The resulting type after applying the & operator

fn bitand(self, other: Wrapping<i8>) -> Wrapping<i8>

The method for the & operator

impl BitAndAssign for Wrapping<i8>
1.8.0
[src]

fn bitand_assign(&mut self, other: Wrapping<i8>)

The method for the & operator

impl Neg for Wrapping<i8>
1.10.0
[src]

type Output = Self

The resulting type after applying the - operator

fn neg(self) -> Self

The method for the unary - operator

impl Add for Wrapping<i16>
[src]

type Output = Wrapping<i16>

The resulting type after applying the + operator

fn add(self, other: Wrapping<i16>) -> Wrapping<i16>

The method for the + operator

impl AddAssign for Wrapping<i16>
1.8.0
[src]

fn add_assign(&mut self, other: Wrapping<i16>)

The method for the += operator

impl Sub for Wrapping<i16>
[src]

type Output = Wrapping<i16>

The resulting type after applying the - operator

fn sub(self, other: Wrapping<i16>) -> Wrapping<i16>

The method for the - operator

impl SubAssign for Wrapping<i16>
1.8.0
[src]

fn sub_assign(&mut self, other: Wrapping<i16>)

The method for the -= operator

impl Mul for Wrapping<i16>
[src]

type Output = Wrapping<i16>

The resulting type after applying the * operator

fn mul(self, other: Wrapping<i16>) -> Wrapping<i16>

The method for the * operator

impl MulAssign for Wrapping<i16>
1.8.0
[src]

fn mul_assign(&mut self, other: Wrapping<i16>)

The method for the *= operator

impl Div for Wrapping<i16>
1.3.0
[src]

type Output = Wrapping<i16>

The resulting type after applying the / operator

fn div(self, other: Wrapping<i16>) -> Wrapping<i16>

The method for the / operator

impl DivAssign for Wrapping<i16>
1.8.0
[src]

fn div_assign(&mut self, other: Wrapping<i16>)

The method for the /= operator

impl Rem for Wrapping<i16>
1.7.0
[src]

type Output = Wrapping<i16>

The resulting type after applying the % operator

fn rem(self, other: Wrapping<i16>) -> Wrapping<i16>

The method for the % operator

impl RemAssign for Wrapping<i16>
1.8.0
[src]

fn rem_assign(&mut self, other: Wrapping<i16>)

The method for the %= operator

impl Not for Wrapping<i16>
[src]

type Output = Wrapping<i16>

The resulting type after applying the ! operator

fn not(self) -> Wrapping<i16>

The method for the unary ! operator

impl BitXor for Wrapping<i16>
[src]

type Output = Wrapping<i16>

The resulting type after applying the ^ operator

fn bitxor(self, other: Wrapping<i16>) -> Wrapping<i16>

The method for the ^ operator

impl BitXorAssign for Wrapping<i16>
1.8.0
[src]

fn bitxor_assign(&mut self, other: Wrapping<i16>)

The method for the ^= operator

impl BitOr for Wrapping<i16>
[src]

type Output = Wrapping<i16>

The resulting type after applying the | operator

fn bitor(self, other: Wrapping<i16>) -> Wrapping<i16>

The method for the | operator

impl BitOrAssign for Wrapping<i16>
1.8.0
[src]

fn bitor_assign(&mut self, other: Wrapping<i16>)

The method for the |= operator

impl BitAnd for Wrapping<i16>
[src]

type Output = Wrapping<i16>

The resulting type after applying the & operator

fn bitand(self, other: Wrapping<i16>) -> Wrapping<i16>

The method for the & operator

impl BitAndAssign for Wrapping<i16>
1.8.0
[src]

fn bitand_assign(&mut self, other: Wrapping<i16>)

The method for the & operator

impl Neg for Wrapping<i16>
1.10.0
[src]

type Output = Self

The resulting type after applying the - operator

fn neg(self) -> Self

The method for the unary - operator

impl Add for Wrapping<i32>
[src]

type Output = Wrapping<i32>

The resulting type after applying the + operator

fn add(self, other: Wrapping<i32>) -> Wrapping<i32>

The method for the + operator

impl AddAssign for Wrapping<i32>
1.8.0
[src]

fn add_assign(&mut self, other: Wrapping<i32>)

The method for the += operator

impl Sub for Wrapping<i32>
[src]

type Output = Wrapping<i32>

The resulting type after applying the - operator

fn sub(self, other: Wrapping<i32>) -> Wrapping<i32>

The method for the - operator

impl SubAssign for Wrapping<i32>
1.8.0
[src]

fn sub_assign(&mut self, other: Wrapping<i32>)

The method for the -= operator

impl Mul for Wrapping<i32>
[src]

type Output = Wrapping<i32>

The resulting type after applying the * operator

fn mul(self, other: Wrapping<i32>) -> Wrapping<i32>

The method for the * operator

impl MulAssign for Wrapping<i32>
1.8.0
[src]

fn mul_assign(&mut self, other: Wrapping<i32>)

The method for the *= operator

impl Div for Wrapping<i32>
1.3.0
[src]

type Output = Wrapping<i32>

The resulting type after applying the / operator

fn div(self, other: Wrapping<i32>) -> Wrapping<i32>

The method for the / operator

impl DivAssign for Wrapping<i32>
1.8.0
[src]

fn div_assign(&mut self, other: Wrapping<i32>)

The method for the /= operator

impl Rem for Wrapping<i32>
1.7.0
[src]

type Output = Wrapping<i32>

The resulting type after applying the % operator

fn rem(self, other: Wrapping<i32>) -> Wrapping<i32>

The method for the % operator

impl RemAssign for Wrapping<i32>
1.8.0
[src]

fn rem_assign(&mut self, other: Wrapping<i32>)

The method for the %= operator

impl Not for Wrapping<i32>
[src]

type Output = Wrapping<i32>

The resulting type after applying the ! operator

fn not(self) -> Wrapping<i32>

The method for the unary ! operator

impl BitXor for Wrapping<i32>
[src]

type Output = Wrapping<i32>

The resulting type after applying the ^ operator

fn bitxor(self, other: Wrapping<i32>) -> Wrapping<i32>

The method for the ^ operator

impl BitXorAssign for Wrapping<i32>
1.8.0
[src]

fn bitxor_assign(&mut self, other: Wrapping<i32>)

The method for the ^= operator

impl BitOr for Wrapping<i32>
[src]

type Output = Wrapping<i32>

The resulting type after applying the | operator

fn bitor(self, other: Wrapping<i32>) -> Wrapping<i32>

The method for the | operator

impl BitOrAssign for Wrapping<i32>
1.8.0
[src]

fn bitor_assign(&mut self, other: Wrapping<i32>)

The method for the |= operator

impl BitAnd for Wrapping<i32>
[src]

type Output = Wrapping<i32>

The resulting type after applying the & operator

fn bitand(self, other: Wrapping<i32>) -> Wrapping<i32>

The method for the & operator

impl BitAndAssign for Wrapping<i32>
1.8.0
[src]

fn bitand_assign(&mut self, other: Wrapping<i32>)

The method for the & operator

impl Neg for Wrapping<i32>
1.10.0
[src]

type Output = Self

The resulting type after applying the - operator

fn neg(self) -> Self

The method for the unary - operator

impl Add for Wrapping<i64>
[src]

type Output = Wrapping<i64>

The resulting type after applying the + operator

fn add(self, other: Wrapping<i64>) -> Wrapping<i64>

The method for the + operator

impl AddAssign for Wrapping<i64>
1.8.0
[src]

fn add_assign(&mut self, other: Wrapping<i64>)

The method for the += operator

impl Sub for Wrapping<i64>
[src]

type Output = Wrapping<i64>

The resulting type after applying the - operator

fn sub(self, other: Wrapping<i64>) -> Wrapping<i64>

The method for the - operator

impl SubAssign for Wrapping<i64>
1.8.0
[src]

fn sub_assign(&mut self, other: Wrapping<i64>)

The method for the -= operator

impl Mul for Wrapping<i64>
[src]

type Output = Wrapping<i64>

The resulting type after applying the * operator

fn mul(self, other: Wrapping<i64>) -> Wrapping<i64>

The method for the * operator

impl MulAssign for Wrapping<i64>
1.8.0
[src]

fn mul_assign(&mut self, other: Wrapping<i64>)

The method for the *= operator

impl Div for Wrapping<i64>
1.3.0
[src]

type Output = Wrapping<i64>

The resulting type after applying the / operator

fn div(self, other: Wrapping<i64>) -> Wrapping<i64>

The method for the / operator

impl DivAssign for Wrapping<i64>
1.8.0
[src]

fn div_assign(&mut self, other: Wrapping<i64>)

The method for the /= operator

impl Rem for Wrapping<i64>
1.7.0
[src]

type Output = Wrapping<i64>

The resulting type after applying the % operator

fn rem(self, other: Wrapping<i64>) -> Wrapping<i64>

The method for the % operator

impl RemAssign for Wrapping<i64>
1.8.0
[src]

fn rem_assign(&mut self, other: Wrapping<i64>)

The method for the %= operator

impl Not for Wrapping<i64>
[src]

type Output = Wrapping<i64>

The resulting type after applying the ! operator

fn not(self) -> Wrapping<i64>

The method for the unary ! operator

impl BitXor for Wrapping<i64>
[src]

type Output = Wrapping<i64>

The resulting type after applying the ^ operator

fn bitxor(self, other: Wrapping<i64>) -> Wrapping<i64>

The method for the ^ operator

impl BitXorAssign for Wrapping<i64>
1.8.0
[src]

fn bitxor_assign(&mut self, other: Wrapping<i64>)

The method for the ^= operator

impl BitOr for Wrapping<i64>
[src]

type Output = Wrapping<i64>

The resulting type after applying the | operator

fn bitor(self, other: Wrapping<i64>) -> Wrapping<i64>

The method for the | operator

impl BitOrAssign for Wrapping<i64>
1.8.0
[src]

fn bitor_assign(&mut self, other: Wrapping<i64>)

The method for the |= operator

impl BitAnd for Wrapping<i64>
[src]

type Output = Wrapping<i64>

The resulting type after applying the & operator

fn bitand(self, other: Wrapping<i64>) -> Wrapping<i64>

The method for the & operator

impl BitAndAssign for Wrapping<i64>
1.8.0
[src]

fn bitand_assign(&mut self, other: Wrapping<i64>)

The method for the & operator

impl Neg for Wrapping<i64>
1.10.0
[src]

type Output = Self

The resulting type after applying the - operator

fn neg(self) -> Self

The method for the unary - operator

impl<T: Debug> Debug for Wrapping<T>
[src]

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

Formats the value using the given formatter.

impl<T: Display> Display for Wrapping<T>
1.10.0
[src]

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

Formats the value using the given formatter.

Derived Implementations

impl<T: Hash> Hash for Wrapping<T>
[src]

fn hash<__HT: Hasher>(&self, __arg_0: &mut __HT)

Feeds this value into the state given, updating the hasher as necessary.

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

Feeds a slice of this type into the state provided.

impl<T: Default> Default for Wrapping<T>
[src]

fn default() -> Wrapping<T>

Returns the "default value" for a type. Read more

impl<T: Copy> Copy for Wrapping<T>
[src]

impl<T: Clone> Clone for Wrapping<T>
[src]

fn clone(&self) -> Wrapping<T>

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more

impl<T: Ord> Ord for Wrapping<T>
[src]

fn cmp(&self, __arg_0: &Wrapping<T>) -> Ordering

This method returns an Ordering between self and other. Read more

impl<T: PartialOrd> PartialOrd for Wrapping<T>
[src]

fn partial_cmp(&self, __arg_0: &Wrapping<T>) -> Option<Ordering>

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

fn lt(&self, __arg_0: &Wrapping<T>) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more

fn le(&self, __arg_0: &Wrapping<T>) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

fn gt(&self, __arg_0: &Wrapping<T>) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more

fn ge(&self, __arg_0: &Wrapping<T>) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl<T: Eq> Eq for Wrapping<T>
[src]

impl<T: PartialEq> PartialEq for Wrapping<T>
[src]

fn eq(&self, __arg_0: &Wrapping<T>) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, __arg_0: &Wrapping<T>) -> bool

This method tests for !=.