pub trait FieldChallengerHelper<F> {
const RATE: usize;
// Required methods
fn sample(&mut self, output: &mut [F]);
fn observe(&mut self, input: &[F]);
}
Expand description
A helper trait for implementing FieldChallenger
.
The helper trait provides methods for sampling new challenges and observing data.
Required Associated Constants§
sourceconst RATE: usize
const RATE: usize
The number of elements returned by a single call to Self::sample
.
Required Methods§
Object Safety§
This trait is not object safe.