Mul

Trait 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 for f32

Source§

type Output = f32

Source§

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

Source§

impl Mul for f64

Source§

type Output = f64

Source§

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

Source§

impl Mul for i8

Source§

type Output = i8

Source§

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

Source§

impl Mul for i16

Source§

type Output = i16

Source§

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

Source§

impl Mul for i32

Source§

type Output = i32

Source§

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

Source§

impl Mul for i64

Source§

type Output = i64

Source§

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

Source§

impl Mul for i128

Source§

type Output = i128

Source§

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

Source§

impl Mul for isize

Source§

type Output = isize

Source§

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

Source§

impl Mul for u8

Source§

type Output = u8

Source§

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

Source§

impl Mul for u16

Source§

type Output = u16

Source§

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

Source§

impl Mul for u32

Source§

type Output = u32

Source§

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

Source§

impl Mul for u64

Source§

type Output = u64

Source§

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

Source§

impl Mul for u128

Source§

type Output = u128

Source§

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

Source§

impl Mul for usize

Source§

type Output = usize

Source§

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

Implementors§