pub struct Groth16VerifierInputs {
pub curve: CurveKind,
pub protocol: String,
pub verifying_key: Groth16VerificationKey,
pub proof: Groth16Proof,
pub public_inputs: Vec<DecimalValue>,
pub source_format: SourceFormat,
}Fields§
§curve: CurveKind§protocol: String§verifying_key: Groth16VerificationKey§proof: Groth16Proof§public_inputs: Vec<DecimalValue>§source_format: SourceFormatImplementations§
Source§impl Groth16VerifierInputs
impl Groth16VerifierInputs
pub fn from_legacy( vk: LegacyVerificationKey, proof: LegacyProof, public_inputs: Vec<DecimalValue>, source_format: SourceFormat, ) -> Result<Self>
Trait Implementations§
Source§impl Clone for Groth16VerifierInputs
impl Clone for Groth16VerifierInputs
Source§fn clone(&self) -> Groth16VerifierInputs
fn clone(&self) -> Groth16VerifierInputs
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 moreAuto Trait Implementations§
impl Freeze for Groth16VerifierInputs
impl RefUnwindSafe for Groth16VerifierInputs
impl Send for Groth16VerifierInputs
impl Sync for Groth16VerifierInputs
impl Unpin for Groth16VerifierInputs
impl UnsafeUnpin for Groth16VerifierInputs
impl UnwindSafe for Groth16VerifierInputs
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