pub trait TryMul<Rhs = Self> {
type Output;
type Error;
// Required method
fn try_mul(self, rhs: Rhs) -> Result<Self::Output, Self::Error>;
}
Expand description
Checked multiplication operator which returns a Result to indicate success or failure.