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

Required Methods

Implementations on Foreign Types

Implementors