pub trait Relabel<T, B> {
    // Required method
    fn relabel_with<N, G>(
        &mut self,
        vocabulary: &mut N,
        generator: &mut G,
        relabeling: &mut HashMap<B, Id<T, B>>,
    )
       where N: Vocabulary<Iri = T, BlankId = B>,
             G: Generator<N>,
             T: Clone + Eq + Hash,
             B: Clone + Eq + Hash;
    // Provided method
    fn relabel<G>(
        &mut self,
        generator: &mut G,
        relabeling: &mut HashMap<B, Id<T, B>>,
    )
       where G: Generator,
             T: Clone + Eq + Hash,
             B: Clone + Eq + Hash,
             (): Vocabulary<Iri = T, BlankId = B> { ... }
}Required Methods§
fn relabel_with<N, G>( &mut self, vocabulary: &mut N, generator: &mut G, relabeling: &mut HashMap<B, Id<T, B>>, )
Provided Methods§
Object Safety§
This trait is not object safe.