TryMul

Trait TryMul 

Source
pub trait TryMul<RHS = Self> {
    type Output;
    type Err;

    // Required method
    fn try_mul(self, rhs: RHS) -> Result<Self::Output, Self::Err>;
}
Expand description

Fallible multiplication trait.

Required Associated Types§

Required Methods§

Source

fn try_mul(self, rhs: RHS) -> Result<Self::Output, Self::Err>

Implementations on Foreign Types§

Source§

impl TryMul for i8

Source§

impl TryMul for i16

Source§

impl TryMul for i32

Source§

impl TryMul for i64

Source§

impl TryMul for isize

Source§

impl TryMul for u8

Source§

impl TryMul for u16

Source§

impl TryMul for u32

Source§

impl TryMul for u64

Source§

impl TryMul for usize

Implementors§