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§
type VK: VerifierKey
Required Methods§
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.