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