pub trait CircuitElement {
type CircuitWitness: CircuitWitness;
}Expand description
Represents a circuit element that can be used in circuit construction.
This trait establishes the relationship between circuit elements and their corresponding witness data.
§Implementation
This trait should not be implemented manually. Instead, it is automatically
implemented when using the #[circuit] attribute macro.
Required Associated Types§
Sourcetype CircuitWitness: CircuitWitness
type CircuitWitness: CircuitWitness
The witness type associated with this circuit element.