pub trait HasSolutions<I: Input> {
    type Solutions: Corpus<I>;
    fn solutions(&self) -> &Self::Solutions;
fn solutions_mut(&mut self) -> &mut Self::Solutions; }
Expand description

Trait for elements offering a corpus of solutions

Associated Types

The associated type implementing Corpus for solutions

Required methods

The solutions corpus

The solutions corpus (mut)

Implementors