pub trait GraphVisitor<I: Interpretation> {
type Ok;
type Error;
// Required methods
fn subject<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 subjects of an RDF graph.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".