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

Required Methods§

Implementors§