pub trait RdfQuads<T, B, M> {
    fn rdf_quads_with<'n, 'g, N, G: Generator<T, B, N, M>>(
        &self,
        vocabulary: &'n mut N,
        generator: &'g mut G,
        rdf_direction: Option<RdfDirection>
    ) -> Quads<'_, 'n, 'g, T, B, N, M, G>Notable traits for Quads<'a, 'n, 'g, T, B, N, M, G>impl<'a, 'n, 'g, T: Clone, B: Clone, N: IriVocabularyMut<Iri = T>, M, G: Generator<T, B, N, M>> Iterator for Quads<'a, 'n, 'g, T, B, N, M, G> type Item = QuadRef<'a, T, B>;; fn rdf_quads<'g, G: Generator<T, B, (), M>>(
        &self,
        generator: &'g mut G,
        rdf_direction: Option<RdfDirection>
    ) -> Quads<'_, 'static, 'g, T, B, (), M, G>Notable traits for Quads<'a, 'n, 'g, T, B, N, M, G>impl<'a, 'n, 'g, T: Clone, B: Clone, N: IriVocabularyMut<Iri = T>, M, G: Generator<T, B, N, M>> Iterator for Quads<'a, 'n, 'g, T, B, N, M, G> type Item = QuadRef<'a, T, B>;; }

Required Methods

Implementors