pub trait IdentifyAll<T, B, M> {
    // Required method
    fn identify_all_with<N: Vocabulary<Iri = T, BlankId = B>, G: Generator<N, M>>(
        &mut self,
        vocabulary: &mut N,
        generator: &mut G
    )
       where M: Clone,
             T: Eq + Hash,
             B: Eq + Hash;

    // Provided method
    fn identify_all<G: Generator<(), M>>(&mut self, generator: &mut G)
       where M: Clone,
             T: Eq + Hash,
             B: Eq + Hash,
             (): Vocabulary<Iri = T, BlankId = B> { ... }
}

Required Methods§

source

fn identify_all_with<N: Vocabulary<Iri = T, BlankId = B>, G: Generator<N, M>>( &mut self, vocabulary: &mut N, generator: &mut G )
where M: Clone, T: Eq + Hash, B: Eq + Hash,

Provided Methods§

source

fn identify_all<G: Generator<(), M>>(&mut self, generator: &mut G)
where M: Clone, T: Eq + Hash, B: Eq + Hash, (): Vocabulary<Iri = T, BlankId = B>,

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T, B, M> IdentifyAll<T, B, M> for FlattenedDocument<T, B, M>