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

Required Methods

Implementors