wiwi::num

Trait Mul

Source
pub trait Mul<R>
where Self: Sealed, R: Sealed,
{ type Output; // Required method fn mul(self, rhs: R) -> Self::Output; }

Required Associated Types§

Required Methods§

Source

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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl Mul<u8> for u8

Source§

type Output = u8

Source§

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

Source§

impl Mul<u16> for u8

Source§

type Output = u16

Source§

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

Source§

impl Mul<u32> for u8

Source§

type Output = u32

Source§

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

Source§

impl Mul<u64> for u8

Source§

type Output = u64

Source§

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

Source§

impl Mul<u128> for u8

Source§

type Output = u128

Source§

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

Source§

impl Mul<usize> for u8

Source§

type Output = usize

Source§

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

Implementors§