pub trait CommAlg: CommRing + Module<Ring = Self::R> {
type R: CommRing;
// Provided method
fn from_scalar(r: Self::R) -> Self { ... }
}
Expand description
A commutative algebra over a commutative ring.
Required Associated Types§
Provided Methods§
Sourcefn from_scalar(r: Self::R) -> Self
fn from_scalar(r: Self::R) -> Self
Convert an element of the base ring into an element of the algebra.
A commutative algebra A over a commutative ring R can be defined as a ring homomorphism from R to A. This method computes that homomorphism.
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.