Trait Build

Source
pub trait Build<M, V: RdfVocabulary, 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§