pub trait PermutationAirBuilder: ExtensionBuilder {
type MP: Matrix<Self::VarEF>;
type RandomVar: Into<Self::ExprEF> + Copy;
// Required methods
fn permutation(&self) -> Self::MP;
fn permutation_randomness(&self) -> &[Self::RandomVar];
}
Required Associated Types§
Required Methods§
fn permutation(&self) -> Self::MP
fn permutation_randomness(&self) -> &[Self::RandomVar]
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.