pub trait ProgramPrivateVariables<N: Network>: ToConstraintField<N::InnerScalarField> + Debug + ToBytes + FromBytes + Send + Sync {
    fn new_blank() -> Result<Self>
    where
        Self: Sized
;
fn as_any(&self) -> &dyn Any; }

Required methods

Initializes a blank instance of the private variables, typically used for a SNARK setup.

Implementors