pub trait LinkedData<I: Interpretation = (), V: Vocabulary = ()> {
// Required method
fn visit<S>(&self, visitor: S) -> Result<S::Ok, S::Error>
where S: Visitor<I, V>;
}
Expand description
Linked-Data type.
A Linked-Data type represents an RDF dataset which can be visited using the
visit
method.
Required Methods§
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.