pub trait PredicateObjectsVisitor<I: Interpretation> {
type Ok;
type Error;
// Required methods
fn object<T>(&mut self, value: &T) -> Result<(), Self::Error>
where T: ?Sized + LinkedDataResource<I> + LinkedDataSubject<I>;
fn end(self) -> Result<Self::Ok, Self::Error>;
}Expand description
Visitor over the objects of a predicate.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".