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: Vocabulary + IriVocabularyMut + LiteralVocabularyMut,
V::BlankId: Clone,
V::Iri: Clone,
V::Literal: Clone,
I: InterpretationMut<V> + ReverseTermInterpretation<Iri = V::Iri, BlankId = V::BlankId, Literal = V::Literal>,