pub struct BatchItem<S: PedersenSuite> { /* private fields */ }Expand description
Deferred Pedersen verification data for batch verification.
Captures all the information needed to verify a single Pedersen proof, allowing multiple proofs to be verified together via a single MSM.
Auto Trait Implementations§
impl<S> Freeze for BatchItem<S>
impl<S> RefUnwindSafe for BatchItem<S>where
<<S as Suite>::Affine as AffineRepr>::ScalarField: RefUnwindSafe,
<S as Suite>::Affine: RefUnwindSafe,
impl<S> Send for BatchItem<S>
impl<S> Sync for BatchItem<S>
impl<S> Unpin for BatchItem<S>
impl<S> UnsafeUnpin for BatchItem<S>where
<<S as Suite>::Affine as AffineRepr>::ScalarField: UnsafeUnpin,
<S as Suite>::Affine: UnsafeUnpin,
impl<S> UnwindSafe for BatchItem<S>where
<<S as Suite>::Affine as AffineRepr>::ScalarField: UnwindSafe,
<S as Suite>::Affine: 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