pub trait UpcastMul<H: Mul<Output = H> + Rem<Output = H>>: Upcast<Higher = H> + CheckedMul + Copy {
    fn upcast_mul(self, rhs: Self) -> H { ... }
    fn upcast_mul_mod(self, rhs: Self, modulo: Self) -> Self { ... }
}

Provided Methods

Implementations on Foreign Types

Implementors