pub trait Module:
AbstractModule<AbstractRing = Self::Ring>
+ AdditiveGroupAbelian
+ ClosedMul<Self::Ring> {
type Ring: RingCommutative;
}Expand description
A module which overloads the * and + operators.
Required Associated Types§
Sourcetype Ring: RingCommutative
type Ring: RingCommutative
The underlying scalar field.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".