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>>;
}
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>>;
}