pub trait RdfQuads<T, B, M> {
    // Required method
    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> ;

    // Provided methods
    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§

source

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>

Provided Methods§

source

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>

source

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>,

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T, B, M> RdfQuads<T, B, M> for ExpandedDocument<T, B, M>

source§

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

source§

impl<T: Eq + Hash, B: Eq + Hash, M> RdfQuads<T, B, M> for NodeMap<T, B, M>