pub enum ProverError {
WitnessL2NormViolated {
norm_squared: Zq,
allowed: Zq,
},
ProjectionError {
index: usize,
expected: Zq,
computed: Zq,
},
}
Variants§
WitnessL2NormViolated
Indicates that the L2 norm (squared) of the witness exceeded the allowed threshold.
ProjectionError
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ProverError
impl RefUnwindSafe for ProverError
impl Send for ProverError
impl Sync for ProverError
impl Unpin for ProverError
impl UnwindSafe for ProverError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more