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§

source

fn query_cell<F: Field>(&self, index: usize, at: Rotation) -> Expression<F>

Return expression from cell

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl ColumnType for Any

source§

fn query_cell<F: Field>(&self, index: usize, at: Rotation) -> Expression<F>

Implementors§