pub trait ExtField: Field {
const NON_RESIDUE: Self;
// Required method
fn frobenius_map(&mut self, power: usize);
// Provided method
fn mul_by_nonresidue(&self) -> Self { ... }
}
Required Associated Constants§
const NON_RESIDUE: Self
Required Methods§
fn frobenius_map(&mut self, power: usize)
Provided Methods§
fn mul_by_nonresidue(&self) -> Self
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.