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