pub trait PrepareGadget<T, F: PrimeField> {
    fn prepare<CS: ConstraintSystem<F>>(
        &self,
        cs: CS
    ) -> Result<T, SynthesisError>; }

Required methods

Implementors