pub trait Build<M, V: VocabularyMut, G> {
    // Required method
    fn build(
        &self,
        context: &mut Context<'_, '_, M, V, G>,
        triples: &mut Vec<MetaTriple<M, V>>
    ) -> Result<(), MetaError<M>>;
}

Required Methods§

source

fn build( &self, context: &mut Context<'_, '_, M, V, G>, triples: &mut Vec<MetaTriple<M, V>> ) -> Result<(), MetaError<M>>

Implementors§

source§

impl<M: Clone, V: VocabularyMut, G: Generator<V>> Build<M, V, G> for Document<M>where V::Iri: Clone, V::BlankId: Clone,