Trait nalgebra::ClosedMulAssign

source ·
pub trait ClosedMulAssign<Right = Self>: ClosedMul<Right> + MulAssign<Right> { }
Expand description

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

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T, Right> ClosedMulAssign<Right> for T
where T: ClosedMul<Right> + MulAssign<Right>,