Trait WitnessColView

Source
pub trait WitnessColView<F> {
    // Required methods
    fn get(&self, index: usize) -> F;
    fn size(&self) -> usize;
}
Expand description

Type erased interface for viewing witness columns. Note that F will be an extension field of the underlying column’s field.

Required Methods§

Source

fn get(&self, index: usize) -> F

Returns the scalar at a given index

Source

fn size(&self) -> usize

The size of the scalar elements in this column.

Implementors§