pub trait HasCubicNonResidue<F: IsField> {
// Required method
fn residue() -> FieldElement<F>;
}
Expand description
Trait to fix a cubic non residue.
Used to construct a cubic extension field by adding
a square root of residue()
.
Required Methods§
Sourcefn residue() -> FieldElement<F>
fn residue() -> FieldElement<F>
This function must return an element that is not a cube in Fp, that is, a cubic non-residue.
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.