pub trait HasTwoAdicQuinticExtension: QuinticTrinomialExtendable {
const EXT_TWO_ADICITY: usize;
// Required method
fn ext_two_adic_generator(bits: usize) -> [Self; 5];
}Expand description
Trait for quintic extensions that support two-adic subgroup generators.
Required Associated Constants§
Sourceconst EXT_TWO_ADICITY: usize
const EXT_TWO_ADICITY: usize
Two-adicity of the multiplicative group order p^5 - 1.
Required Methods§
Sourcefn ext_two_adic_generator(bits: usize) -> [Self; 5]
fn ext_two_adic_generator(bits: usize) -> [Self; 5]
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.