pub trait PCCommitment:
Clone
+ CanonicalSerialize
+ CanonicalDeserialize {
// Required methods
fn empty() -> Self;
fn has_degree_bound(&self) -> bool;
}
Expand description
Defines the minimal interface of commitments for any polynomial commitment scheme.
Required Methods§
Sourcefn has_degree_bound(&self) -> bool
fn has_degree_bound(&self) -> bool
Does this commitment have a degree bound?
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.