pub trait HasCorpus<I: Input> {
    type Corpus: Corpus<I>;

    fn corpus(&self) -> &Self::Corpus;
    fn corpus_mut(&mut self) -> &mut Self::Corpus;
}
Expand description

Trait for elements offering a corpus

Required Associated Types

The associated type implementing Corpus.

Required Methods

The testcase corpus

The testcase corpus (mutable)

Implementors