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