pub struct AnonymousBinding<'a, T>(pub &'a Iri, pub &'a T);
Tuple Fields§
§0: &'a Iri
§1: &'a T
Implementations§
Trait Implementations§
Source§impl<V: Vocabulary + IriVocabularyMut, I: Interpretation, T: LinkedDataPredicateObjects<I, V>> LinkedData<I, V> for AnonymousBinding<'_, T>
impl<V: Vocabulary + IriVocabularyMut, I: Interpretation, T: LinkedDataPredicateObjects<I, V>> LinkedData<I, V> for AnonymousBinding<'_, T>
Source§impl<V: Vocabulary + IriVocabularyMut, I: Interpretation, T: LinkedDataPredicateObjects<I, V>> LinkedDataGraph<I, V> for AnonymousBinding<'_, T>
impl<V: Vocabulary + IriVocabularyMut, I: Interpretation, T: LinkedDataPredicateObjects<I, V>> LinkedDataGraph<I, V> for AnonymousBinding<'_, T>
fn visit_graph<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where
S: GraphVisitor<I, V>,
Source§impl<V: Vocabulary + IriVocabularyMut, I: Interpretation, T: LinkedDataPredicateObjects<I, V>> LinkedDataPredicateObjects<I, V> for AnonymousBinding<'_, T>
impl<V: Vocabulary + IriVocabularyMut, I: Interpretation, T: LinkedDataPredicateObjects<I, V>> LinkedDataPredicateObjects<I, V> for AnonymousBinding<'_, T>
fn visit_objects<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where
S: PredicateObjectsVisitor<I, V>,
Source§impl<I: Interpretation, V: Vocabulary, T> LinkedDataResource<I, V> for AnonymousBinding<'_, T>
impl<I: Interpretation, V: Vocabulary, T> LinkedDataResource<I, V> for AnonymousBinding<'_, T>
fn interpretation( &self, _vocabulary: &mut V, _interpretation: &mut I, ) -> ResourceInterpretation<'_, I, V>
fn lexical_representation<'a>( &'a self, vocabulary: &'a mut V, interpretation: &'a mut I, ) -> Option<CowRdfTerm<'a, V>>
fn reference_interpretation( &self, vocabulary: &mut V, interpretation: &mut I, ) -> ResourceInterpretation<'_, I, V>
Source§impl<V: Vocabulary + IriVocabularyMut, I: Interpretation, T: LinkedDataPredicateObjects<I, V>> LinkedDataSubject<I, V> for AnonymousBinding<'_, T>
impl<V: Vocabulary + IriVocabularyMut, I: Interpretation, T: LinkedDataPredicateObjects<I, V>> LinkedDataSubject<I, V> for AnonymousBinding<'_, T>
fn visit_subject<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where
S: SubjectVisitor<I, V>,
Auto Trait Implementations§
impl<'a, T> Freeze for AnonymousBinding<'a, T>
impl<'a, T> RefUnwindSafe for AnonymousBinding<'a, T>where
T: RefUnwindSafe,
impl<'a, T> Send for AnonymousBinding<'a, T>where
T: Sync,
impl<'a, T> Sync for AnonymousBinding<'a, T>where
T: Sync,
impl<'a, T> Unpin for AnonymousBinding<'a, T>
impl<'a, T> UnwindSafe for AnonymousBinding<'a, T>where
T: RefUnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more