Skip to main content

rdf_reader_turtle/oxrdf/
error.rs

1// This is free and unencumbered software released into the public domain.
2
3pub type TurtleReaderResult<T> = core::result::Result<T, TurtleReaderError>;
4
5/// An error encountered while reading a Turtle file.
6pub type TurtleReaderError = oxttl::TurtleParseError;