pub trait FieldExtConstructor<Fp: PrimeField, const DEGREE: usize> {
    fn new(c: [Fp; DEGREE]) -> Self;
    fn coeffs(&self) -> Vec<Fp>;
}

Required Methods

Implementations on Foreign Types

Implementors