pub trait LinkedDataGraph<I: Interpretation, V: Vocabulary> {
// Required method
fn visit_graph<S>(&self, visitor: S) -> Result<S::Ok, S::Error>
where S: GraphVisitor<I, V>;
}
Expand description
Serialize a Linked-Data graph.
Required Methods§
fn visit_graph<S>(&self, visitor: S) -> Result<S::Ok, S::Error>where
S: GraphVisitor<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.