pub struct NapiFqPlonkVerifierIndex {
pub domain: NapiFqDomain,
pub max_poly_size: i32,
pub public_: i32,
pub prev_challenges: i32,
pub srs: NapiFqSrs,
pub evals: NapiFqPlonkVerificationEvals,
pub shifts: NapiFqShifts,
pub lookup_index: Option<NapiFqLookupVerifierIndex>,
pub zk_rows: i32,
}Fields§
§domain: NapiFqDomain§max_poly_size: i32§public_: i32§prev_challenges: i32§srs: NapiFqSrs§evals: NapiFqPlonkVerificationEvals§shifts: NapiFqShifts§lookup_index: Option<NapiFqLookupVerifierIndex>§zk_rows: i32Trait Implementations§
Source§impl Clone for NapiFqPlonkVerifierIndex
impl Clone for NapiFqPlonkVerifierIndex
Source§fn clone(&self) -> NapiFqPlonkVerifierIndex
fn clone(&self) -> NapiFqPlonkVerifierIndex
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 Debug for NapiFqPlonkVerifierIndex
impl Debug for NapiFqPlonkVerifierIndex
Source§impl Default for NapiFqPlonkVerifierIndex
impl Default for NapiFqPlonkVerifierIndex
Source§fn default() -> NapiFqPlonkVerifierIndex
fn default() -> NapiFqPlonkVerifierIndex
Returns the “default value” for a type. Read more
Source§impl From<(&VerifierIndex<FULL_ROUNDS, Affine<PallasParameters>, SRS<Affine<PallasParameters>>>, &NapiFqSrs)> for NapiFqPlonkVerifierIndex
impl From<(&VerifierIndex<FULL_ROUNDS, Affine<PallasParameters>, SRS<Affine<PallasParameters>>>, &NapiFqSrs)> for NapiFqPlonkVerifierIndex
Source§impl From<NapiFqPlonkVerifierIndex> for VerifierIndex<FULL_ROUNDS, Pallas, SRS<Pallas>>
impl From<NapiFqPlonkVerifierIndex> for VerifierIndex<FULL_ROUNDS, Pallas, SRS<Pallas>>
Source§fn from(index: NapiFqPlonkVerifierIndex) -> Self
fn from(index: NapiFqPlonkVerifierIndex) -> Self
Converts to this type from the input type.
Source§impl FromNapiValue for NapiFqPlonkVerifierIndex
impl FromNapiValue for NapiFqPlonkVerifierIndex
Source§unsafe fn from_napi_value(
env: napi_env,
napi_val: napi_value,
) -> Result<NapiFqPlonkVerifierIndex>
unsafe fn from_napi_value( env: napi_env, napi_val: napi_value, ) -> Result<NapiFqPlonkVerifierIndex>
Safety Read more
fn from_unknown(value: Unknown<'_>) -> Result<Self, Error>
Source§impl ToNapiValue for NapiFqPlonkVerifierIndex
impl ToNapiValue for NapiFqPlonkVerifierIndex
Source§unsafe fn to_napi_value(
env: napi_env,
val: NapiFqPlonkVerifierIndex,
) -> Result<napi_value>
unsafe fn to_napi_value( env: napi_env, val: NapiFqPlonkVerifierIndex, ) -> Result<napi_value>
Safety Read more
fn into_unknown(self, env: &Env) -> Result<Unknown<'_>, Error>
Source§impl TypeName for NapiFqPlonkVerifierIndex
impl TypeName for NapiFqPlonkVerifierIndex
Auto Trait Implementations§
impl Freeze for NapiFqPlonkVerifierIndex
impl RefUnwindSafe for NapiFqPlonkVerifierIndex
impl Send for NapiFqPlonkVerifierIndex
impl Sync for NapiFqPlonkVerifierIndex
impl Unpin for NapiFqPlonkVerifierIndex
impl UnsafeUnpin for NapiFqPlonkVerifierIndex
impl UnwindSafe for NapiFqPlonkVerifierIndex
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