pub enum VerifierError {
NotSymmetric {
i: usize,
j: usize,
expected: Rq,
found: Rq,
},
B0Mismatch {
index: usize,
expected: Zq,
computed: Zq,
},
NormSumExceeded {
norm: Zq,
allowed: Zq,
},
AzError {
computed: RqVector,
expected: RqVector,
},
ZInnerError {
computed: Rq,
expected: Rq,
},
PhiError {
computed: Rq,
expected: Rq,
},
RelationCheckFailed,
OuterCommitError {
computed: RqVector,
expected: RqVector,
},
DecompositionError(DecompositionError),
}
Variants§
NotSymmetric
B0Mismatch
NormSumExceeded
AzError
ZInnerError
PhiError
RelationCheckFailed
OuterCommitError
DecompositionError(DecompositionError)
Trait Implementations§
Source§impl Debug for VerifierError
impl Debug for VerifierError
Source§impl Display for VerifierError
impl Display for VerifierError
Source§impl Error for VerifierError
impl Error for VerifierError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<DecompositionError> for VerifierError
impl From<DecompositionError> for VerifierError
Source§fn from(source: DecompositionError) -> Self
fn from(source: DecompositionError) -> Self
Converts to this type from the input type.
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