pub trait LinkedDataPredicateObjects<I: Interpretation = (), V: Vocabulary = ()> {
// Required method
fn visit_objects<S>(&self, visitor: S) -> Result<S::Ok, S::Error>
where S: PredicateObjectsVisitor<I, V>;
}
Expand description
Type representing the objects of an RDF subject’s predicate binding.
Required Methods§
fn visit_objects<S>(&self, visitor: S) -> Result<S::Ok, S::Error>where
S: PredicateObjectsVisitor<I, V>,
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.