pub trait FftreeField: PrimeField {
// Required method
fn build_fftree(n: usize) -> Option<FFTree<Self>>;
}Expand description
The interface for fields to build FFTrees.
Required Methods§
fn build_fftree(n: usize) -> Option<FFTree<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.