pub trait CheckedMulFix<Rhs> {
type Output;
// Required method
fn checked_mul(&self, v: &Rhs) -> Option<Self::Output>;
}Expand description
Adapts CheckedMul concept to this library with computed Output type.
pub trait CheckedMulFix<Rhs> {
type Output;
// Required method
fn checked_mul(&self, v: &Rhs) -> Option<Self::Output>;
}Adapts CheckedMul concept to this library with computed Output type.