RawVerifierKey

Trait RawVerifierKey 

Source
pub trait RawVerifierKey:
    Clone
    + Debug
    + Eq
    + PartialEq
    + CanonicalSerialize
    + CanonicalDeserialize {
    type VK: VerifierKey;

    // Required method
    fn prepare(&self) -> Self::VK;
}
Expand description

Generates a VerifierKey, serializable

Required Associated Types§

Required Methods§

Source

fn prepare(&self) -> Self::VK

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl RawVerifierKey for ()

Source§

type VK = ()

Source§

fn prepare(&self)

Implementors§