pub trait SaturatingMul<Rhs = Self> {
type Output;
// Required method
fn saturating_mul(self, rhs: Rhs) -> Self::Output;
}pub trait SaturatingMul<Rhs = Self> {
type Output;
// Required method
fn saturating_mul(self, rhs: Rhs) -> Self::Output;
}