Trait ClosedMul
rin::math::scalar
pub trait ClosedMul<Right = Self>: Mul<Right, Output = Self> + MulAssign<Right> { }
Trait alias for Mul and MulAssign with result of type Self.
Mul
MulAssign
Self
impl<T, Right> ClosedMul<Right> for T where T: Mul<Right, Output = T> + MulAssign<Right>,