pub trait MatrixMutOpsByValue<Rhs = Self>:
MatrixCommon
+ AddAssign<Rhs>
+ SubAssign<Rhs> { }Expand description
In-place operations on matrices (addition and subtraction).
This trait defines in-place matrix addition and subtraction (self += rhs, self -= rhs).
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.