pub struct FriProof<F: Field, M: Mmcs<F>, Witness, InputProof> {
pub commit_phase_commits: Vec<M::Commitment>,
pub query_proofs: Vec<QueryProof<F, M, InputProof>>,
pub final_poly: F,
pub pow_witness: Witness,
}
Fields§
§commit_phase_commits: Vec<M::Commitment>
§query_proofs: Vec<QueryProof<F, M, InputProof>>
§final_poly: F
§pow_witness: Witness
Trait Implementations§
Source§impl<F: Clone + Field, M: Clone + Mmcs<F>, Witness: Clone, InputProof: Clone> Clone for FriProof<F, M, Witness, InputProof>where
M::Commitment: Clone,
impl<F: Clone + Field, M: Clone + Mmcs<F>, Witness: Clone, InputProof: Clone> Clone for FriProof<F, M, Witness, InputProof>where
M::Commitment: Clone,
Source§impl<'de, F: Field, M: Mmcs<F>, Witness, InputProof> Deserialize<'de> for FriProof<F, M, Witness, InputProof>where
Witness: Deserialize<'de>,
InputProof: Deserialize<'de>,
impl<'de, F: Field, M: Mmcs<F>, Witness, InputProof> Deserialize<'de> for FriProof<F, M, Witness, InputProof>where
Witness: Deserialize<'de>,
InputProof: Deserialize<'de>,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl<F, M, Witness, InputProof> Freeze for FriProof<F, M, Witness, InputProof>
impl<F, M, Witness, InputProof> RefUnwindSafe for FriProof<F, M, Witness, InputProof>where
F: RefUnwindSafe,
Witness: RefUnwindSafe,
<M as Mmcs<F>>::Commitment: RefUnwindSafe,
InputProof: RefUnwindSafe,
<M as Mmcs<F>>::Proof: RefUnwindSafe,
impl<F, M, Witness, InputProof> Send for FriProof<F, M, Witness, InputProof>
impl<F, M, Witness, InputProof> Sync for FriProof<F, M, Witness, InputProof>
impl<F, M, Witness, InputProof> Unpin for FriProof<F, M, Witness, InputProof>
impl<F, M, Witness, InputProof> UnwindSafe for FriProof<F, M, Witness, InputProof>where
F: UnwindSafe,
Witness: UnwindSafe,
<M as Mmcs<F>>::Commitment: UnwindSafe,
InputProof: UnwindSafe,
<M as Mmcs<F>>::Proof: 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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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