pub enum CombinedPolyResolverError<F: PrimeField> {
EqrError(ArithErrors),
MleEvaluationError(EvaluationError),
ProjectionError(DynamicPolynomialF<F>, F, EvaluationError),
WrongUpEvalsNumber {
got: usize,
expected: usize,
},
WrongDownEvalsNumber {
got: usize,
expected: usize,
},
SumcheckError(SumCheckError<F>),
WrongSumcheckSum {
got: F,
expected: F,
},
ClaimValueDoesNotMatch {
got: F,
expected: F,
},
}Variants§
EqrError(ArithErrors)
MleEvaluationError(EvaluationError)
ProjectionError(DynamicPolynomialF<F>, F, EvaluationError)
WrongUpEvalsNumber
WrongDownEvalsNumber
SumcheckError(SumCheckError<F>)
WrongSumcheckSum
ClaimValueDoesNotMatch
Trait Implementations§
Source§impl<F: Debug + PrimeField> Debug for CombinedPolyResolverError<F>
impl<F: Debug + PrimeField> Debug for CombinedPolyResolverError<F>
Source§impl<F> Display for CombinedPolyResolverError<F>
impl<F> Display for CombinedPolyResolverError<F>
Source§impl<F: PrimeField> Error for CombinedPolyResolverError<F>
impl<F: PrimeField> Error for CombinedPolyResolverError<F>
1.30.0 · 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<F: PrimeField> From<ArithErrors> for CombinedPolyResolverError<F>
impl<F: PrimeField> From<ArithErrors> for CombinedPolyResolverError<F>
Source§fn from(arith_error: ArithErrors) -> Self
fn from(arith_error: ArithErrors) -> Self
Converts to this type from the input type.
Source§impl<F: PrimeField> From<EvaluationError> for CombinedPolyResolverError<F>
impl<F: PrimeField> From<EvaluationError> for CombinedPolyResolverError<F>
Source§fn from(eval_error: EvaluationError) -> Self
fn from(eval_error: EvaluationError) -> Self
Converts to this type from the input type.
Source§impl<F: PrimeField> From<SumCheckError<F>> for CombinedPolyResolverError<F>
impl<F: PrimeField> From<SumCheckError<F>> for CombinedPolyResolverError<F>
Source§fn from(sumcheck_error: SumCheckError<F>) -> Self
fn from(sumcheck_error: SumCheckError<F>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<F> Freeze for CombinedPolyResolverError<F>where
F: Freeze,
impl<F> RefUnwindSafe for CombinedPolyResolverError<F>where
F: RefUnwindSafe,
impl<F> Send for CombinedPolyResolverError<F>
impl<F> Sync for CombinedPolyResolverError<F>
impl<F> Unpin for CombinedPolyResolverError<F>where
F: Unpin,
impl<F> UnsafeUnpin for CombinedPolyResolverError<F>where
F: UnsafeUnpin,
impl<F> UnwindSafe for CombinedPolyResolverError<F>where
F: UnwindSafe,
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more