Trait rdftk_io::GraphWriter[][src]

pub trait GraphWriter {
    fn write(&self, w: &mut impl Write, graph: &GraphRef) -> Result<()>;
}
Expand description

Write all Statements in the Graph using the provided implementation of Write.

Required methods

Write the formatted graph Graph using the write implementation w.

Implementors