pub trait ClosedMul<Right = Self>: Mul<Right, Output = Self> + MulAssign<Right> { }
Expand description

Trait alias for Mul and MulAssign with result of type Self.

Implementors