[][src]Trait try_traits::ops::TryMulAssign

pub trait TryMulAssign<Rhs = Self> {
    type Error;
    fn try_mul_assign(&mut self, other: Rhs) -> Result<(), Self::Error>;
}

The try trait for MulAssign.

Associated Types

type Error

The type returned in the event of an error.

Loading content...

Required methods

fn try_mul_assign(&mut self, other: Rhs) -> Result<(), Self::Error>

The fallible equivalent of MulAssign::mul_assign.

Loading content...

Implementors

impl<T: MulAssign<Rhs>, Rhs> TryMulAssign<Rhs> for T[src]

type Error = Infallible

Loading content...