pub trait PolyFp<F: Field> {
// Required method
fn poly_fp(
&self,
cycle: usize,
steps: usize,
mix: &[F::ExtElem],
args: &[&[F::Elem]],
) -> F::ExtElem;
}Required Methods§
fn poly_fp( &self, cycle: usize, steps: usize, mix: &[F::ExtElem], args: &[&[F::Elem]], ) -> F::ExtElem
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".