pub trait HasQuadraticNonResidue<F: IsField> {
// Required method
fn residue() -> FieldElement<F>;
}Expand description
Trait to fix a quadratic non residue.
Used to construct a quadratic extension field by adding
a square root of residue().
Required Methods§
fn residue() -> FieldElement<F>
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.