pub trait FoldingColumnTrait: Copy + Clone {
    // Required method
    fn is_witness(&self) -> bool;

    // Provided method
    fn degree(&self) -> Degree { ... }
}

Required Methods§

source

fn is_witness(&self) -> bool

Provided Methods§

source

fn degree(&self) -> Degree

Return the degree of the column

Implementors§