pub trait IdentifyAll<T, B, M> {
    fn identify_all_with<N, G: Generator<T, B, N, M>>(
        &mut self,
        vocabulary: &mut N,
        generator: G
    )
    where
        M: Clone
; fn identify_all<G: Generator<T, B, (), M>>(&mut self, generator: G)
    where
        M: Clone
; }

Required Methods

Implementors