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

Associated Types

The associated type implementing Corpus.

Required methods

The testcase corpus

The testcase corpus (mut)

Implementors