pub trait CorpusReaderProxyInterface: Send + Sync {
type NextResponseFut: Future<Output = Result<i32, Error>> + Send;
// Required method
fn next(&self, test_input: Input) -> Self::NextResponseFut;
}
pub trait CorpusReaderProxyInterface: Send + Sync {
type NextResponseFut: Future<Output = Result<i32, Error>> + Send;
// Required method
fn next(&self, test_input: Input) -> Self::NextResponseFut;
}