pub struct BatchLCProof<E: PairingEngine> {
    pub proof: BatchProof<E>,
}Expand description
A proof of satisfaction of linear combinations.
Fields§
§proof: BatchProof<E>Evaluation proof.
Implementations§
Source§impl<E: PairingEngine> BatchLCProof<E>
 
impl<E: PairingEngine> BatchLCProof<E>
Trait Implementations§
Source§impl<E: PairingEngine> CanonicalDeserialize for BatchLCProof<E>
 
impl<E: PairingEngine> CanonicalDeserialize for BatchLCProof<E>
fn deserialize_with_mode<R: Read>( reader: R, compress: Compress, validate: Validate, ) -> Result<Self, SerializationError>
fn deserialize_compressed<R>(reader: R) -> Result<Self, SerializationError>where
    R: Read,
fn deserialize_compressed_unchecked<R>(
    reader: R,
) -> Result<Self, SerializationError>where
    R: Read,
fn deserialize_uncompressed<R>(reader: R) -> Result<Self, SerializationError>where
    R: Read,
fn deserialize_uncompressed_unchecked<R>(
    reader: R,
) -> Result<Self, SerializationError>where
    R: Read,
Source§impl<E: PairingEngine> CanonicalSerialize for BatchLCProof<E>
 
impl<E: PairingEngine> CanonicalSerialize for BatchLCProof<E>
fn serialize_with_mode<W: Write>( &self, writer: W, compress: Compress, ) -> Result<(), SerializationError>
fn serialized_size(&self, compress: Compress) -> usize
fn serialize_compressed<W>(&self, writer: W) -> Result<(), SerializationError>where
    W: Write,
fn compressed_size(&self) -> usize
fn serialize_uncompressed<W>(&self, writer: W) -> Result<(), SerializationError>where
    W: Write,
fn uncompressed_size(&self) -> usize
Source§impl<E: Clone + PairingEngine> Clone for BatchLCProof<E>
 
impl<E: Clone + PairingEngine> Clone for BatchLCProof<E>
Source§fn clone(&self) -> BatchLCProof<E>
 
fn clone(&self) -> BatchLCProof<E>
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<E: Debug + PairingEngine> Debug for BatchLCProof<E>
 
impl<E: Debug + PairingEngine> Debug for BatchLCProof<E>
Source§impl<E: PairingEngine> FromBytes for BatchLCProof<E>
 
impl<E: PairingEngine> FromBytes for BatchLCProof<E>
Source§fn from_bytes_le(bytes: &[u8]) -> Result<Self, Error>where
    Self: Sized,
 
fn from_bytes_le(bytes: &[u8]) -> Result<Self, Error>where
    Self: Sized,
Returns 
Self from a byte array in little-endian order.Source§fn from_bytes_le_unchecked(bytes: &[u8]) -> Result<Self, Error>where
    Self: Sized,
 
fn from_bytes_le_unchecked(bytes: &[u8]) -> Result<Self, Error>where
    Self: Sized,
Same behavior as 
Self::from_bytes_le but avoids costly checks.
This shall only be called when deserializing from a trusted source, such as local storage. Read moreSource§fn read_le_unchecked<R>(reader: R) -> Result<Self, Error>
 
fn read_le_unchecked<R>(reader: R) -> Result<Self, Error>
Same behavior as 
Self::read_le but avoids costly checks.
This shall only be called when deserializing from a trusted source, such as local storage. Read moreSource§impl<E: PartialEq + PairingEngine> PartialEq for BatchLCProof<E>
 
impl<E: PartialEq + PairingEngine> PartialEq for BatchLCProof<E>
Source§impl<E: PairingEngine> ToBytes for BatchLCProof<E>
 
impl<E: PairingEngine> ToBytes for BatchLCProof<E>
Source§impl<E: PairingEngine> Valid for BatchLCProof<E>
 
impl<E: PairingEngine> Valid for BatchLCProof<E>
fn check(&self) -> Result<(), SerializationError>
fn batch_check<'a>(
    batch: impl Iterator<Item = &'a Self> + Send,
) -> Result<(), SerializationError>where
    Self: 'a,
impl<E: Eq + PairingEngine> Eq for BatchLCProof<E>
impl<E: PairingEngine> StructuralPartialEq for BatchLCProof<E>
Auto Trait Implementations§
impl<E> Freeze for BatchLCProof<E>
impl<E> RefUnwindSafe for BatchLCProof<E>
impl<E> Send for BatchLCProof<E>
impl<E> Sync for BatchLCProof<E>
impl<E> Unpin for BatchLCProof<E>
impl<E> UnwindSafe for BatchLCProof<E>
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> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Compare self to 
key and return true if they are equal.Source§impl<T> Instrument for T
 
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
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