pub struct NQuadsFormatter<W: Write> { /* fields omitted */ }
Expand description

A N-Quads formatter.

It implements the QuadsFormatter trait.

Write some triples using the QuadsFormatter API into a Vec buffer:

use rio_turtle::NQuadsFormatter;
use rio_api::formatter::QuadsFormatter;
use rio_api::model::{NamedNode, Quad};

let mut formatter = NQuadsFormatter::new(Vec::default());
formatter.format(&Quad {
    subject: NamedNode { iri: "http://example.com/foo" }.into(),
    predicate: NamedNode { iri: "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" }.into(),
    object: NamedNode { iri: "http://schema.org/Person" }.into(),
    graph_name: Some(NamedNode { iri: "http://example.com/" }.into())
})?;
let _nquads = formatter.finish();

Implementations

Builds a new formatter from a Write implementation

Finishes writing and returns the underlying Write

Trait Implementations

Writes a quad

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.