pub trait DirectWitnessCap<F: PrimeField, CIx: ColumnIndexer>where
Self: MultiRowReadCap<F, CIx>,{
// Required method
fn variable_to_field(value: Self::Variable) -> F;
}
Expand description
A direct field access capability modelling an abstract witness builder. Not for constraint building.
Required Methods§
sourcefn variable_to_field(value: Self::Variable) -> F
fn variable_to_field(value: Self::Variable) -> F
Convert an abstract variable to a field element! Inverse of Env::constant().