pub trait ExtensionShape: 'static + Sealed { }Expand description
Sealed marker for the reducing polynomial shape of an extension field.
The three concrete shapes — Binomial, CubicTrinomial, and
QuinticTrinomial — correspond to the reducers
X^D - W, X^3 - X - 1, and X^5 + X^2 - 1 respectively.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".