pub struct SnarkBundle {
pub vk: VerifyingKey,
pub proof: Proof,
}Expand description
A serialized SNARK verification bundle.
Fields§
§vk: VerifyingKey§proof: ProofTrait Implementations§
Source§impl Clone for SnarkBundle
impl Clone for SnarkBundle
Source§fn clone(&self) -> SnarkBundle
fn clone(&self) -> SnarkBundle
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 moreSource§impl Debug for SnarkBundle
impl Debug for SnarkBundle
Source§impl<'de> Deserialize<'de> for SnarkBundle
impl<'de> Deserialize<'de> for SnarkBundle
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 Freeze for SnarkBundle
impl RefUnwindSafe for SnarkBundle
impl Send for SnarkBundle
impl Sync for SnarkBundle
impl Unpin for SnarkBundle
impl UnsafeUnpin for SnarkBundle
impl UnwindSafe for SnarkBundle
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