pub trait SingleSegmentVmProver<SC: StarkGenericConfig> {
// Required method
fn prove(&self, input: impl Into<Streams<Val<SC>>>) -> Proof<SC>;
}
Expand description
Prover for a specific exe in a specific single-segment VM using a specific Stark config.
Required Methods§
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.