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