pub trait TryMulAssign<Rhs = Self> {
type Error;
// Required method
fn try_mul_assign(&mut self, other: Rhs) -> Result<(), Self::Error>;
}
Expand description
The try trait for MulAssign
.
Required Associated Types§
Required Methods§
Sourcefn try_mul_assign(&mut self, other: Rhs) -> Result<(), Self::Error>
fn try_mul_assign(&mut self, other: Rhs) -> Result<(), Self::Error>
The fallible equivalent of MulAssign::mul_assign
.