pub trait Checkable {
// Required methods
fn check(&self) -> CheckResult;
fn check_with_config(&self, config: CheckerConfig) -> CheckResult;
}Expand description
Trait for types that can be checked for validity
Required Methods§
Sourcefn check(&self) -> CheckResult
fn check(&self) -> CheckResult
Check if the proof is valid
Sourcefn check_with_config(&self, config: CheckerConfig) -> CheckResult
fn check_with_config(&self, config: CheckerConfig) -> CheckResult
Check using a custom checker configuration