Trait halo2_proofs::plonk::ColumnType
source · pub trait ColumnType: Sized + 'static + Copy + Debug + PartialEq + Eq + Into<Any> {
// Required method
fn query_cell<F>(&self, index: usize, at: Rotation) -> Expression<F>
where F: Field;
}
Expand description
A column type
Required Methods§
sourcefn query_cell<F>(&self, index: usize, at: Rotation) -> Expression<F>where
F: Field,
fn query_cell<F>(&self, index: usize, at: Rotation) -> Expression<F>where
F: Field,
Return expression from cell
Object Safety§
This trait is not object safe.