Trait wasmer_types::lib::std::ops::RemAssign1.8.0[][src]

pub trait RemAssign<Rhs = Self> {
    fn rem_assign(&mut self, rhs: Rhs);
}
Expand description

The remainder assignment operator %=.

Examples

use std::ops::RemAssign;

struct CookieJar { cookies: u32 }

impl RemAssign<u32> for CookieJar {
    fn rem_assign(&mut self, piles: u32) {
        self.cookies %= piles;
    }
}

let mut jar = CookieJar { cookies: 31 };
let piles = 4;

println!("Splitting up {} cookies into {} even piles!", jar.cookies, piles);

jar %= piles;

println!("{} cookies remain in the cookie jar!", jar.cookies);

Required methods

fn rem_assign(&mut self, rhs: Rhs)[src]

Performs the %= operation.

Example

let mut x: u32 = 12;
x %= 10;
assert_eq!(x, 2);

Implementations on Foreign Types

impl RemAssign<Wrapping<u128>> for Wrapping<u128>[src]

pub fn rem_assign(&mut self, other: Wrapping<u128>)[src]

impl<'_> RemAssign<&'_ i32> for i32[src]

pub fn rem_assign(&mut self, other: &i32)[src]

impl RemAssign<Wrapping<u16>> for Wrapping<u16>[src]

pub fn rem_assign(&mut self, other: Wrapping<u16>)[src]

impl<'_> RemAssign<&'_ i64> for i64[src]

pub fn rem_assign(&mut self, other: &i64)[src]

impl<'_> RemAssign<&'_ f32> for f32[src]

pub fn rem_assign(&mut self, other: &f32)[src]

impl<'_> RemAssign<&'_ u8> for u8[src]

pub fn rem_assign(&mut self, other: &u8)[src]

impl RemAssign<i32> for i32[src]

pub fn rem_assign(&mut self, other: i32)[src]

impl<'_> RemAssign<&'_ u16> for u16[src]

pub fn rem_assign(&mut self, other: &u16)[src]

impl RemAssign<Wrapping<u64>> for Wrapping<u64>[src]

pub fn rem_assign(&mut self, other: Wrapping<u64>)[src]

impl<'_> RemAssign<&'_ usize> for usize[src]

pub fn rem_assign(&mut self, other: &usize)[src]

impl RemAssign<u128> for u128[src]

pub fn rem_assign(&mut self, other: u128)[src]

impl<'_> RemAssign<&'_ u128> for u128[src]

pub fn rem_assign(&mut self, other: &u128)[src]

impl RemAssign<isize> for isize[src]

pub fn rem_assign(&mut self, other: isize)[src]

impl RemAssign<i64> for i64[src]

pub fn rem_assign(&mut self, other: i64)[src]

impl RemAssign<Wrapping<i16>> for Wrapping<i16>[src]

pub fn rem_assign(&mut self, other: Wrapping<i16>)[src]

impl RemAssign<Wrapping<i8>> for Wrapping<i8>[src]

pub fn rem_assign(&mut self, other: Wrapping<i8>)[src]

impl<'_> RemAssign<&'_ Wrapping<u64>> for Wrapping<u64>[src]

pub fn rem_assign(&mut self, other: &Wrapping<u64>)[src]

impl RemAssign<Wrapping<i32>> for Wrapping<i32>[src]

pub fn rem_assign(&mut self, other: Wrapping<i32>)[src]

impl RemAssign<usize> for usize[src]

pub fn rem_assign(&mut self, other: usize)[src]

impl RemAssign<u32> for u32[src]

pub fn rem_assign(&mut self, other: u32)[src]

impl<'_> RemAssign<&'_ Wrapping<i128>> for Wrapping<i128>[src]

pub fn rem_assign(&mut self, other: &Wrapping<i128>)[src]

impl RemAssign<Wrapping<u8>> for Wrapping<u8>[src]

pub fn rem_assign(&mut self, other: Wrapping<u8>)[src]

impl RemAssign<i16> for i16[src]

pub fn rem_assign(&mut self, other: i16)[src]

impl<'_> RemAssign<&'_ isize> for isize[src]

pub fn rem_assign(&mut self, other: &isize)[src]

impl<'_> RemAssign<&'_ Wrapping<u16>> for Wrapping<u16>[src]

pub fn rem_assign(&mut self, other: &Wrapping<u16>)[src]

impl<'_> RemAssign<&'_ Wrapping<u8>> for Wrapping<u8>[src]

pub fn rem_assign(&mut self, other: &Wrapping<u8>)[src]

impl<'_> RemAssign<&'_ u32> for u32[src]

pub fn rem_assign(&mut self, other: &u32)[src]

impl RemAssign<f32> for f32[src]

pub fn rem_assign(&mut self, other: f32)[src]

impl RemAssign<Wrapping<u32>> for Wrapping<u32>[src]

pub fn rem_assign(&mut self, other: Wrapping<u32>)[src]

impl RemAssign<Wrapping<isize>> for Wrapping<isize>[src]

pub fn rem_assign(&mut self, other: Wrapping<isize>)[src]

impl RemAssign<Wrapping<i128>> for Wrapping<i128>[src]

pub fn rem_assign(&mut self, other: Wrapping<i128>)[src]

impl<'_> RemAssign<&'_ Wrapping<i32>> for Wrapping<i32>[src]

pub fn rem_assign(&mut self, other: &Wrapping<i32>)[src]

impl<'_> RemAssign<&'_ Wrapping<i8>> for Wrapping<i8>[src]

pub fn rem_assign(&mut self, other: &Wrapping<i8>)[src]

impl RemAssign<f64> for f64[src]

pub fn rem_assign(&mut self, other: f64)[src]

impl<'_> RemAssign<&'_ Wrapping<i16>> for Wrapping<i16>[src]

pub fn rem_assign(&mut self, other: &Wrapping<i16>)[src]

impl RemAssign<i128> for i128[src]

pub fn rem_assign(&mut self, other: i128)[src]

impl<'_> RemAssign<&'_ Wrapping<u32>> for Wrapping<u32>[src]

pub fn rem_assign(&mut self, other: &Wrapping<u32>)[src]

impl<'_> RemAssign<&'_ Wrapping<isize>> for Wrapping<isize>[src]

pub fn rem_assign(&mut self, other: &Wrapping<isize>)[src]

impl RemAssign<i8> for i8[src]

pub fn rem_assign(&mut self, other: i8)[src]

impl<'_> RemAssign<&'_ Wrapping<u128>> for Wrapping<u128>[src]

pub fn rem_assign(&mut self, other: &Wrapping<u128>)[src]

impl RemAssign<u16> for u16[src]

pub fn rem_assign(&mut self, other: u16)[src]

impl RemAssign<u64> for u64[src]

pub fn rem_assign(&mut self, other: u64)[src]

impl RemAssign<Wrapping<i64>> for Wrapping<i64>[src]

pub fn rem_assign(&mut self, other: Wrapping<i64>)[src]

impl<'_> RemAssign<&'_ f64> for f64[src]

pub fn rem_assign(&mut self, other: &f64)[src]

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

pub fn rem_assign(&mut self, other: Wrapping<usize>)[src]

impl<'_> RemAssign<&'_ Wrapping<usize>> for Wrapping<usize>[src]

pub fn rem_assign(&mut self, other: &Wrapping<usize>)[src]

impl<'_> RemAssign<&'_ i8> for i8[src]

pub fn rem_assign(&mut self, other: &i8)[src]

impl RemAssign<u8> for u8[src]

pub fn rem_assign(&mut self, other: u8)[src]

impl<'_> RemAssign<&'_ u64> for u64[src]

pub fn rem_assign(&mut self, other: &u64)[src]

impl<'_> RemAssign<&'_ i16> for i16[src]

pub fn rem_assign(&mut self, other: &i16)[src]

impl<'_> RemAssign<&'_ Wrapping<i64>> for Wrapping<i64>[src]

pub fn rem_assign(&mut self, other: &Wrapping<i64>)[src]

impl<'_> RemAssign<&'_ i128> for i128[src]

pub fn rem_assign(&mut self, other: &i128)[src]

Implementors