pub trait FoldingColumnTrait: Copy + Clone {
// Required method
fn is_witness(&self) -> bool;
// Provided method
fn degree(&self) -> Degree { ... }
}
Required Methods§
fn is_witness(&self) -> bool
Provided Methods§
Sourcefn degree(&self) -> Degree
fn degree(&self) -> Degree
Return the degree of the column
0
if the column is a constant1
if the column will take part of the randomisation (see top level documentation
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.