Module rdftk_io::nt::writer[][src]

Expand description

Provides the NTripleWriter implementation of the GraphWriter trait.

Example

use rdftk_io::nt::writer::NTripleWriter;
use rdftk_io::write_graph_to_string;

let writer = NTripleWriter::default();

let result = write_graph_to_string(&writer, &make_graph());

Structs

NTripleWriter

This struct implements the GraphWriter trait and will write out a serialized form of the entire graph.