pub struct TranscriptData<F, C> { /* private fields */ }Expand description
Raw transcript data captured by a prover and replayed by a verifier.
Implementations§
Source§impl<F, C> TranscriptData<F, C>
impl<F, C> TranscriptData<F, C>
Sourcepub fn new(fields: Vec<F>, commitments: Vec<C>) -> TranscriptData<F, C>
pub fn new(fields: Vec<F>, commitments: Vec<C>) -> TranscriptData<F, C>
Create transcript data from field and commitment streams.
Sourcepub fn commitments(&self) -> &[C]
pub fn commitments(&self) -> &[C]
Returns the recorded commitments.
Sourcepub fn as_slices(&self) -> (&[F], &[C])
pub fn as_slices(&self) -> (&[F], &[C])
Returns field and commitment slices for verifier construction.
Sourcepub fn into_parts(self) -> (Vec<F>, Vec<C>)
pub fn into_parts(self) -> (Vec<F>, Vec<C>)
Consume and return the underlying vectors.
Sourcepub fn size_in_bytes(&self) -> usize
pub fn size_in_bytes(&self) -> usize
Returns the total byte size of the recorded transcript data.
Trait Implementations§
Source§impl<F, C> Clone for TranscriptData<F, C>
impl<F, C> Clone for TranscriptData<F, C>
Source§fn clone(&self) -> TranscriptData<F, C>
fn clone(&self) -> TranscriptData<F, C>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<F, C> Debug for TranscriptData<F, C>
impl<F, C> Debug for TranscriptData<F, C>
Source§impl<'de, F, C> Deserialize<'de> for TranscriptData<F, C>where
F: Deserialize<'de>,
C: Deserialize<'de>,
impl<'de, F, C> Deserialize<'de> for TranscriptData<F, C>where
F: Deserialize<'de>,
C: Deserialize<'de>,
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<TranscriptData<F, C>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<TranscriptData<F, C>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<F, C> Serialize for TranscriptData<F, C>
impl<F, C> Serialize for TranscriptData<F, C>
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl<F, C> Freeze for TranscriptData<F, C>
impl<F, C> RefUnwindSafe for TranscriptData<F, C>where
F: RefUnwindSafe,
C: RefUnwindSafe,
impl<F, C> Send for TranscriptData<F, C>
impl<F, C> Sync for TranscriptData<F, C>
impl<F, C> Unpin for TranscriptData<F, C>
impl<F, C> UnsafeUnpin for TranscriptData<F, C>
impl<F, C> UnwindSafe for TranscriptData<F, C>where
F: UnwindSafe,
C: 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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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