pub fn to_quads_with<I, V>(
vocabulary: &mut V,
interpretation: &mut I,
value: &impl LinkedData<I, V>,
) -> Result<Vec<RdfQuad<V>>, IntoQuadsError>where
V: IriVocabularyMut + LiteralVocabularyMut + Vocabulary,
V::BlankId: Clone,
V::Iri: Clone,
V::Literal: Clone,
I: ReverseTermInterpretation<Iri = V::Iri, BlankId = V::BlankId, Literal = V::Literal> + InterpretationMut<V>,