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.