pub trait VerifierKey: Clone + Debug {
// Provided method
fn max_points(&self) -> usize { ... }
}Expand description
Can be used to verify openings to commitments.
Provided Methods§
Sourcefn max_points(&self) -> usize
fn max_points(&self) -> usize
Maximal number of openings that can be verified.
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.