pub struct NTriplesFormatter<W: Write> { /* private fields */ }
Expand description
A Canonical N-Triples formatter.
It implements the TriplesFormatter
trait.
Write some triples using the TriplesFormatter
API into a Vec
buffer:
use rio_turtle::NTriplesFormatter;
use rio_api::formatter::TriplesFormatter;
use rio_api::model::{NamedNode, Triple};
let mut formatter = NTriplesFormatter::new(Vec::default());
formatter.format(&Triple {
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()
})?;
let _ntriples = formatter.finish();
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<W> Freeze for NTriplesFormatter<W>where
W: Freeze,
impl<W> RefUnwindSafe for NTriplesFormatter<W>where
W: RefUnwindSafe,
impl<W> Send for NTriplesFormatter<W>where
W: Send,
impl<W> Sync for NTriplesFormatter<W>where
W: Sync,
impl<W> Unpin for NTriplesFormatter<W>where
W: Unpin,
impl<W> UnwindSafe for NTriplesFormatter<W>where
W: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more