[][src]Trait rdftk_io::GraphWriter

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

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

Required methods

fn write(&self, w: &mut impl Write, graph: &impl Graph) -> Result<()>

Write the formatted graph Graph using the write implementation w.

Loading content...

Implementors

impl GraphWriter for DotWriter[src]

impl GraphWriter for NTripleWriter[src]

Loading content...