pub trait CircuitPublicWitness {
// Required method
fn append_public_witness(&self, witness: &mut Vec<BigInt>, is_private: bool);
}Expand description
Represents the public witness portion of a circuit.
This trait should not be implemented manually. Instead, use the
#[circuit] macro to automatically generate the implementation.
It handles serialization of public inputs for the circuit.