pub trait Var<F: FieldExt>: Clone + Debug + From<AssignedCell<F, F>> {
    fn cell(&self) -> Cell;
    fn value(&self) -> Value<F>;
}
Expand description

Trait for a variable in the circuit.

Required Methods

The cell at which this variable was allocated.

The value allocated to this variable.

Implementations on Foreign Types

Implementors