Trait json_ld::IdentifyAll

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

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

Required Methods§

source

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

Provided Methods§

source

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

Implementations on Foreign Types§

source§

impl<T, B, M> IdentifyAll<T, B, M> for Vec<Meta<Indexed<Node<T, B, M>, M>, M>, Global>

source§

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

Implementors§