Trait linked_data::LinkedData
source · 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§
Object Safety§
This trait is not object safe.