diff --git a/halo2_proofs/src/dev/cost.rs b/halo2_proofs/src/dev/cost.rs index 3d26ec31f3..40c2ebde52 100644 --- a/halo2_proofs/src/dev/cost.rs +++ b/halo2_proofs/src/dev/cost.rs @@ -303,7 +303,7 @@ impl> CircuitCost From> for usize { /// The size of a Halo 2 proof, broken down into its contributing factors. #[derive(Debug)] pub struct ProofSize { - instance: ProofContribution, - advice: ProofContribution, - fixed: ProofContribution, - lookups: ProofContribution, - equality: ProofContribution, - vanishing: ProofContribution, - multiopen: ProofContribution, - polycomm: ProofContribution, + /// + pub instance: ProofContribution, + /// + pub advice: ProofContribution, + /// + pub fixed: ProofContribution, + /// + pub lookups: ProofContribution, + /// + pub equality: ProofContribution, + /// + pub vanishing: ProofContribution, + /// + pub multiopen: ProofContribution, + /// + pub polycomm: ProofContribution, _marker: PhantomData, }