Trait libafl::state::HasSolutions[][src]

pub trait HasSolutions<C, I> where
    C: Corpus<I>,
    I: Input
{ fn solutions(&self) -> &C;
fn solutions_mut(&mut self) -> &mut C; }
Expand description

Trait for elements offering a corpus of solutions

Required methods

The solutions corpus

The solutions corpus (mut)

Implementors