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.
pub trait TryMul<RHS = Self> {
type Output;
type Err;
// Required method
fn try_mul(self, rhs: RHS) -> Result<Self::Output, Self::Err>;
}Fallible multiplication trait.