pub enum AggregateFailed {
Lagrange,
Verification(Vec<u16>),
}Expand description
Error for aggregation failing
Variants§
Lagrange
Lagrange polynomial construction failed, probably because some points repeat
Verification(Vec<u16>)
Party ZKP verification failed
Trait Implementations§
Source§impl Clone for AggregateFailed
impl Clone for AggregateFailed
Source§fn clone(&self) -> AggregateFailed
fn clone(&self) -> AggregateFailed
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AggregateFailed
impl Debug for AggregateFailed
Source§impl Display for AggregateFailed
impl Display for AggregateFailed
Source§impl Error for AggregateFailed
impl Error for AggregateFailed
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()
Auto Trait Implementations§
impl Freeze for AggregateFailed
impl RefUnwindSafe for AggregateFailed
impl Send for AggregateFailed
impl Sync for AggregateFailed
impl Unpin for AggregateFailed
impl UnsafeUnpin for AggregateFailed
impl UnwindSafe for AggregateFailed
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