pub trait AbstractGroup<O: Operator>: AbstractLoop<O> + AbstractMonoid<O> { }Expand description
A group is a loop and a monoid at the same time.
A groups is a set with a closed associative binary operation with the divisibility property and an identity element.
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.