pub trait ProofParser<Proof, Input>: Copy {
// Required method
fn parse_proof(self, i: Input) -> SmtRes<Proof>;
}Expand description
Can parse proofs. Currenly unused.
For more information refer to the module-level documentation.
Required Methods§
fn parse_proof(self, i: Input) -> SmtRes<Proof>
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.