Trait FoldingColumnTrait

Source
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

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§