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§

source

fn visit_graph<S>(&self, visitor: S) -> Result<S::Ok, S::Error>
where S: GraphVisitor<I, V>,

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<'a, I: Interpretation, V: Vocabulary, D> LinkedDataGraph<I, V> for DatasetView<'a, D>

source§

fn visit_graph<S>(&self, visitor: S) -> Result<S::Ok, S::Error>
where S: GraphVisitor<I, V>,

source§

impl<'a, I: Interpretation, V: Vocabulary, T: ?Sized + LinkedDataGraph<I, V>> LinkedDataGraph<I, V> for &'a T

source§

fn visit_graph<S>(&self, visitor: S) -> Result<S::Ok, S::Error>
where S: GraphVisitor<I, V>,

source§

impl<I: Interpretation, V: Vocabulary> LinkedDataGraph<I, V> for ()

source§

fn visit_graph<S>(&self, visitor: S) -> Result<S::Ok, S::Error>
where S: GraphVisitor<I, V>,

source§

impl<I: Interpretation, V: Vocabulary> LinkedDataGraph<I, V> for Iri

source§

fn visit_graph<S>(&self, visitor: S) -> Result<S::Ok, S::Error>
where S: GraphVisitor<I, V>,

source§

impl<I: Interpretation, V: Vocabulary> LinkedDataGraph<I, V> for IriBuf

source§

fn visit_graph<S>(&self, visitor: S) -> Result<S::Ok, S::Error>
where S: GraphVisitor<I, V>,

source§

impl<I: Interpretation, V: Vocabulary, T: LinkedDataSubject<I, V> + LinkedDataResource<I, V>> LinkedDataGraph<I, V> for [T]

source§

fn visit_graph<S>(&self, visitor: S) -> Result<S::Ok, S::Error>
where S: GraphVisitor<I, V>,

source§

impl<I: Interpretation, V: Vocabulary, T: LinkedDataSubject<I, V> + LinkedDataResource<I, V>> LinkedDataGraph<I, V> for Vec<T>

source§

fn visit_graph<S>(&self, visitor: S) -> Result<S::Ok, S::Error>
where S: GraphVisitor<I, V>,

source§

impl<I: Interpretation, V: Vocabulary, T: ?Sized + LinkedDataGraph<I, V>> LinkedDataGraph<I, V> for Box<T>

source§

fn visit_graph<S>(&self, visitor: S) -> Result<S::Ok, S::Error>
where S: GraphVisitor<I, V>,

Implementors§