pub trait Challenger {
// Required methods
fn sampler(&mut self) -> &mut impl Buf;
fn observer(&mut self) -> &mut impl BufMut;
}
Expand description
A Fiat-Shamir challenger that can observe prover messages and sample verifier randomness.
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.