pub struct CommittedTraceData<PB: ProverBackend> {
pub commitment: PB::Commitment,
pub trace: PB::Matrix,
pub data: PB::PcsData,
}Expand description
Commitment to a single trace matrix, together with the trace matrix and prover data.
Fields§
§commitment: PB::Commitment§trace: PB::Matrix§data: PB::PcsDataTrait Implementations§
Auto Trait Implementations§
impl<PB> Freeze for CommittedTraceData<PB>where
<PB as ProverBackend>::Commitment: Freeze,
<PB as ProverBackend>::Matrix: Freeze,
<PB as ProverBackend>::PcsData: Freeze,
impl<PB> RefUnwindSafe for CommittedTraceData<PB>where
<PB as ProverBackend>::Commitment: RefUnwindSafe,
<PB as ProverBackend>::Matrix: RefUnwindSafe,
<PB as ProverBackend>::PcsData: RefUnwindSafe,
impl<PB> Send for CommittedTraceData<PB>
impl<PB> Sync for CommittedTraceData<PB>
impl<PB> Unpin for CommittedTraceData<PB>where
<PB as ProverBackend>::Commitment: Unpin,
<PB as ProverBackend>::Matrix: Unpin,
<PB as ProverBackend>::PcsData: Unpin,
impl<PB> UnwindSafe for CommittedTraceData<PB>where
<PB as ProverBackend>::Commitment: UnwindSafe,
<PB as ProverBackend>::Matrix: UnwindSafe,
<PB as ProverBackend>::PcsData: 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,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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