pub trait ProverProgress {
// Required method
fn update(&mut self, cur: u32, end: u32);
}Expand description
Reports on the progress made towards creating proofs for a bundle.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".