Struct kimchi::proof::caml::CamlRecursionChallenge
source · pub struct CamlRecursionChallenge<CamlG, CamlF> {
pub chals: Vec<CamlF>,
pub comm: CamlPolyComm<CamlG>,
}
Fields§
§chals: Vec<CamlF>
§comm: CamlPolyComm<CamlG>
Trait Implementations§
source§impl<CamlG: Clone, CamlF: Clone> Clone for CamlRecursionChallenge<CamlG, CamlF>
impl<CamlG: Clone, CamlF: Clone> Clone for CamlRecursionChallenge<CamlG, CamlF>
source§fn clone(&self) -> CamlRecursionChallenge<CamlG, CamlF>
fn clone(&self) -> CamlRecursionChallenge<CamlG, CamlF>
Returns a copy 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<G, CamlG, CamlF> From<CamlRecursionChallenge<CamlG, CamlF>> for RecursionChallenge<G>where
G: AffineRepr + From<CamlG>,
G::ScalarField: From<CamlF>,
impl<G, CamlG, CamlF> From<CamlRecursionChallenge<CamlG, CamlF>> for RecursionChallenge<G>where G: AffineRepr + From<CamlG>, G::ScalarField: From<CamlF>,
source§fn from(caml_ch: CamlRecursionChallenge<CamlG, CamlF>) -> RecursionChallenge<G>
fn from(caml_ch: CamlRecursionChallenge<CamlG, CamlF>) -> RecursionChallenge<G>
Converts to this type from the input type.
source§impl<G, CamlG, CamlF> From<RecursionChallenge<G>> for CamlRecursionChallenge<CamlG, CamlF>where
G: AffineRepr,
CamlG: From<G>,
CamlF: From<G::ScalarField>,
impl<G, CamlG, CamlF> From<RecursionChallenge<G>> for CamlRecursionChallenge<CamlG, CamlF>where G: AffineRepr, CamlG: From<G>, CamlF: From<G::ScalarField>,
source§fn from(ch: RecursionChallenge<G>) -> Self
fn from(ch: RecursionChallenge<G>) -> Self
Converts to this type from the input type.
source§impl<'from_value_lifetime, CamlG, CamlF> FromValue<'from_value_lifetime> for CamlRecursionChallenge<CamlG, CamlF>where
Vec<CamlF>: FromValue<'from_value_lifetime>,
CamlF: FromValue<'from_value_lifetime>,
CamlPolyComm<CamlG>: FromValue<'from_value_lifetime>,
CamlG: FromValue<'from_value_lifetime>,
impl<'from_value_lifetime, CamlG, CamlF> FromValue<'from_value_lifetime> for CamlRecursionChallenge<CamlG, CamlF>where Vec<CamlF>: FromValue<'from_value_lifetime>, CamlF: FromValue<'from_value_lifetime>, CamlPolyComm<CamlG>: FromValue<'from_value_lifetime>, CamlG: FromValue<'from_value_lifetime>,
source§fn from_value(value: Value) -> Self
fn from_value(value: Value) -> Self
Convert from OCaml value
source§impl<CamlG, CamlF> IntoValue for CamlRecursionChallenge<CamlG, CamlF>where
Vec<CamlF>: IntoValue,
CamlF: IntoValue,
CamlPolyComm<CamlG>: IntoValue,
CamlG: IntoValue,
impl<CamlG, CamlF> IntoValue for CamlRecursionChallenge<CamlG, CamlF>where Vec<CamlF>: IntoValue, CamlF: IntoValue, CamlPolyComm<CamlG>: IntoValue, CamlG: IntoValue,
source§fn into_value(self, gc: &Runtime) -> Value
fn into_value(self, gc: &Runtime) -> Value
Convert to OCaml value
source§impl<CamlG, CamlF> OCamlBinding for CamlRecursionChallenge<CamlG, CamlF>where
CamlG: OCamlDesc,
CamlF: OCamlDesc,
impl<CamlG, CamlF> OCamlBinding for CamlRecursionChallenge<CamlG, CamlF>where CamlG: OCamlDesc, CamlF: OCamlDesc,
source§impl<CamlG, CamlF> OCamlDesc for CamlRecursionChallenge<CamlG, CamlF>where
CamlG: OCamlDesc,
CamlF: OCamlDesc,
impl<CamlG, CamlF> OCamlDesc for CamlRecursionChallenge<CamlG, CamlF>where CamlG: OCamlDesc, CamlF: OCamlDesc,
source§fn ocaml_desc(env: &Env, generics: &[&str]) -> String
fn ocaml_desc(env: &Env, generics: &[&str]) -> String
describes the type in OCaml, given the current environment [Env]
and the list of generic type parameters of the root type
(the type that makes use of this type)
Auto Trait Implementations§
impl<CamlG, CamlF> RefUnwindSafe for CamlRecursionChallenge<CamlG, CamlF>where CamlF: RefUnwindSafe, CamlG: RefUnwindSafe,
impl<CamlG, CamlF> Send for CamlRecursionChallenge<CamlG, CamlF>where CamlF: Send, CamlG: Send,
impl<CamlG, CamlF> Sync for CamlRecursionChallenge<CamlG, CamlF>where CamlF: Sync, CamlG: Sync,
impl<CamlG, CamlF> Unpin for CamlRecursionChallenge<CamlG, CamlF>where CamlF: Unpin, CamlG: Unpin,
impl<CamlG, CamlF> UnwindSafe for CamlRecursionChallenge<CamlG, CamlF>where CamlF: UnwindSafe, CamlG: 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