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

Required Methods

Implementations on Foreign Types

Implementors