p3_air

Trait PermutationAirBuilder

Source
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§

Source

type MP: Matrix<Self::VarEF>

Source

type RandomVar: Into<Self::ExprEF> + Copy

Required Methods§

Source

fn permutation(&self) -> Self::MP

Source

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.

Implementors§