pub trait AddGrp:
AddMon
+ AddGrpOps
+ SubAssign
+ for<'a> SubAssign<&'a Self>where
for<'a> &'a Self: AddGrpOps<Self>,{ }Expand description
An additive group: an AddMon with negation -x and subtraction x - y,
satisfying x + (-x) = 0.
See: https://en.wikipedia.org/wiki/Group_(mathematics), https://en.wikipedia.org/wiki/Additive_group
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".