Module rdftk_io::nq::writer[][src]

Expand description

Provides the NQuadDataSetWriter implementation of the DataSetWriter trait and the NQuadGraphWriter implementation of the GraphWriter trait.

Example

use rdftk_io::nq::writer::NQuadDataSetWriter;
use rdftk_io::write_data_set_to_string;

let writer = NQuadDataSetWriter::default();

let result = write_data_set_to_string(&writer, &make_data_set());

Structs

NQuadDataSetWriter

This struct implements the DataSetWriter trait and will write out a serialized form of the entire data set.

NQuadGraphWriter

This struct implements the DataSetWriter trait and will write out a serialized form of the entire data set.