Trait const_ops::Mul

source ·
pub trait Mul<Rhs = Self> {
    type Output;

    // Required method
    fn mul(self, rhs: Rhs) -> Self::Output;
}

Required Associated Types§

Required Methods§

source

fn mul(self, rhs: Rhs) -> Self::Output

Implementations on Foreign Types§

source§

impl Mul<u64> for u64

§

type Output = u64

source§

const fn mul(self, other: u64) -> u64

source§

impl Mul<f64> for f64

§

type Output = f64

source§

const fn mul(self, other: f64) -> f64

source§

impl Mul<f32> for f32

§

type Output = f32

source§

const fn mul(self, other: f32) -> f32

source§

impl Mul<usize> for usize

§

type Output = usize

source§

const fn mul(self, other: usize) -> usize

source§

impl Mul<i64> for i64

§

type Output = i64

source§

const fn mul(self, other: i64) -> i64

source§

impl Mul<u32> for u32

§

type Output = u32

source§

const fn mul(self, other: u32) -> u32

source§

impl Mul<i8> for i8

§

type Output = i8

source§

const fn mul(self, other: i8) -> i8

source§

impl Mul<u128> for u128

§

type Output = u128

source§

const fn mul(self, other: u128) -> u128

source§

impl Mul<u16> for u16

§

type Output = u16

source§

const fn mul(self, other: u16) -> u16

source§

impl Mul<i32> for i32

§

type Output = i32

source§

const fn mul(self, other: i32) -> i32

source§

impl Mul<isize> for isize

§

type Output = isize

source§

const fn mul(self, other: isize) -> isize

source§

impl Mul<u8> for u8

§

type Output = u8

source§

const fn mul(self, other: u8) -> u8

source§

impl Mul<i128> for i128

§

type Output = i128

source§

const fn mul(self, other: i128) -> i128

source§

impl Mul<i16> for i16

§

type Output = i16

source§

const fn mul(self, other: i16) -> i16

Implementors§