Trait ark_relations::r1cs::ToConstraintField
source · pub trait ToConstraintField<F>where
F: Field,{
fn to_field_elements(&self) -> Option<Vec<F, Global>>;
}
Expand description
Types that can be converted to a vector of F
elements. Useful for
specifying how public inputs to a constraint system should be represented
inside that constraint system.