pub struct VerifyInput {
pub expected_proof: String,
pub actual_proof: String,
}Expand description
Input for verifying a proof.
Fields§
§expected_proof: StringExpected proof (computed by server)
actual_proof: StringActual proof (received from client)
Implementations§
Trait Implementations§
Source§impl Clone for VerifyInput
impl Clone for VerifyInput
Source§fn clone(&self) -> VerifyInput
fn clone(&self) -> VerifyInput
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 moreAuto Trait Implementations§
impl Freeze for VerifyInput
impl RefUnwindSafe for VerifyInput
impl Send for VerifyInput
impl Sync for VerifyInput
impl Unpin for VerifyInput
impl UnsafeUnpin for VerifyInput
impl UnwindSafe for VerifyInput
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