pub struct GTriGParser<R: BufRead> { /* private fields */ }
Expand description
A TriG streaming parser parsing generalized quads.
It implements the GeneralizedQuadsParser
trait.
Using it requires to enable the generalized
feature.
Count the number of people using the QuadsParser
API:
use rio_turtle::{GTriGParser, TurtleError};
use rio_api::parser::GeneralizedQuadsParser;
use rio_api::model::NamedNode;
let file = b"@prefix schema: <http://schema.org/> .
<http://example/> {
<http://example.com/foo> a schema:Person ;
schema:name ?name .
<http://example.com/bar> a schema:Person ;
schema:name ?name .
}";
let rdf_type = NamedNode { iri: "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" };
let schema_person = NamedNode { iri: "http://schema.org/Person" };
let mut count = 0;
GTriGParser::new(file.as_ref(), None).parse_all(&mut |t| {
if t.predicate == rdf_type.into() && t.object == schema_person.into() {
count += 1;
}
Ok(()) as Result<(), TurtleError>
})?;
assert_eq!(2, count);
Implementations§
Trait Implementations§
Source§impl<R: BufRead> GeneralizedQuadsParser for GTriGParser<R>
impl<R: BufRead> GeneralizedQuadsParser for GTriGParser<R>
type Error = TurtleError
Source§fn parse_step<E: From<TurtleError>>(
&mut self,
on_quad: &mut impl FnMut(GeneralizedQuad<'_>) -> Result<(), E>,
) -> Result<(), E>
fn parse_step<E: From<TurtleError>>( &mut self, on_quad: &mut impl FnMut(GeneralizedQuad<'_>) -> Result<(), E>, ) -> Result<(), E>
Parses a small chunk of the file and calls
on_quad
each time a new quad is read.
(A “small chunk” could be a line for an N-Quads parser.) Read moreAuto Trait Implementations§
impl<R> Freeze for GTriGParser<R>where
R: Freeze,
impl<R> RefUnwindSafe for GTriGParser<R>where
R: RefUnwindSafe,
impl<R> Send for GTriGParser<R>where
R: Send,
impl<R> Sync for GTriGParser<R>where
R: Sync,
impl<R> Unpin for GTriGParser<R>where
R: Unpin,
impl<R> UnwindSafe for GTriGParser<R>where
R: 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