pub trait ToMinimalBitsGadget<F: PrimeField>: Clone {
    fn to_minimal_bits<CS: ConstraintSystem<F>>(
        &self,
        cs: CS
    ) -> Result<Vec<Boolean>, SynthesisError>; }

Required methods

Implementations on Foreign Types

Implementors