pub struct BatchItem<S: ThinVrfSuite> { /* private fields */ }Expand description
Deferred Thin VRF verification data for batch verification.
Stores raw points and delinearization scalars instead of the merged pair,
so that prepare requires no EC ops (just hashing). The expanded
verification equation uses these directly in the batch 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