pub enum VerifierError {
NotSymmetric {
i: usize,
j: usize,
expected: PolyRing,
found: PolyRing,
},
B0Mismatch {
index: usize,
expected: Zq,
computed: Zq,
},
NormSumExceeded {
norm: Zq,
allowed: Zq,
},
AzError {
computed: PolyVector,
expected: PolyVector,
},
ZInnerError {
computed: PolyRing,
expected: PolyRing,
},
PhiError {
computed: PolyRing,
expected: PolyRing,
},
RelationCheckFailed,
OuterCommitError {
computed: PolyVector,
expected: PolyVector,
},
}
Variants§
NotSymmetric
B0Mismatch
NormSumExceeded
AzError
ZInnerError
PhiError
RelationCheckFailed
OuterCommitError
Trait Implementations§
Auto Trait Implementations§
impl Freeze for VerifierError
impl RefUnwindSafe for VerifierError
impl Send for VerifierError
impl Sync for VerifierError
impl Unpin for VerifierError
impl UnwindSafe for VerifierError
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