pub trait RdfQuads<T, B, M> {
    fn rdf_quads_full<'n, 'g, V: Vocabulary<Iri = T, BlankId = B>, G: Generator<V, M>>(
        &self,
        vocabulary: &'n mut V,
        generator: &'g mut G,
        rdf_direction: Option<RdfDirection>,
        produce_generalized_rdf: bool
    ) -> Quads<'_, 'n, 'g, V, M, G> ; fn rdf_quads_with<'n, 'g, V: Vocabulary<Iri = T, BlankId = B>, G: Generator<V, M>>(
        &self,
        vocabulary: &'n mut V,
        generator: &'g mut G,
        rdf_direction: Option<RdfDirection>
    ) -> Quads<'_, 'n, 'g, V, M, G> { ... } fn rdf_quads<'g, G: Generator<(), M>>(
        &self,
        generator: &'g mut G,
        rdf_direction: Option<RdfDirection>
    ) -> Quads<'_, 'static, 'g, (), M, G>
    where
        (): Vocabulary<Iri = T, BlankId = B>
, { ... } }

Required Methods§

Provided Methods§

Implementors§