pub trait IntoLimbedCircuitWitness<E: Engine> {
    // Provided method
    fn into_witness<CS: ConstraintSystem<E>>(
        &self,
        _cs: &mut CS,
    ) -> Result<Vec<Num<E>>, SynthesisError> { ... }
}

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§