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

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

The multiplication assignment operator *=.

Examples

use std::ops::MulAssign;

#[derive(Debug, PartialEq)]
struct Frequency { hertz: f64 }

impl MulAssign<f64> for Frequency {
    fn mul_assign(&mut self, rhs: f64) {
        self.hertz *= rhs;
    }
}

let mut frequency = Frequency { hertz: 50.0 };
frequency *= 4.0;
assert_eq!(Frequency { hertz: 200.0 }, frequency);

Required methods

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

Performs the *= operation.

Example

let mut x: u32 = 12;
x *= 2;
assert_eq!(x, 24);

Implementations on Foreign Types

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

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

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

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

impl MulAssign<i8> for i8[src]

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

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

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

impl MulAssign<u32> for Duration[src]

pub fn mul_assign(&mut self, rhs: u32)[src]

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

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

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

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

impl MulAssign<i32> for i32[src]

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

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

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

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

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

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

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

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

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

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

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

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

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

impl MulAssign<isize> for isize[src]

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

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

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

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

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

impl MulAssign<f32> for f32[src]

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

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

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

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

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

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

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

impl MulAssign<i64> for i64[src]

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

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

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

impl MulAssign<u8> for u8[src]

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

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

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

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

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

impl MulAssign<u64> for u64[src]

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

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

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

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

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

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

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

impl MulAssign<u16> for u16[src]

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

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

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

impl MulAssign<usize> for usize[src]

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

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

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

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

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

impl MulAssign<u128> for u128[src]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

impl MulAssign<i16> for i16[src]

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

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

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

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

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

impl MulAssign<f64> for f64[src]

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

impl MulAssign<i128> for i128[src]

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

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

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

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

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

impl MulAssign<u32> for u32[src]

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

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

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

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

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

Implementors