Trait rdftk_io::DataSetWriter[][src]

pub trait DataSetWriter {
    fn write(&self, w: &mut impl Write, data_set: &DataSetRef) -> Result<()>;
}
Expand description

Write all Graphs in the DataSet using the provided implementation of Write.

Required methods

Write the formatted graph NamedGraph using the write implementation w.

Implementors