Skip to main content

TurtleReaderError

Type Alias TurtleReaderError 

Source
pub type TurtleReaderError = TurtleParseError;
Expand description

An error encountered while reading a Turtle file.

Aliased Type§

pub enum TurtleReaderError {
    Io(Error),
    Syntax(TurtleSyntaxError),
}

Variants§

§

Io(Error)

I/O error during parsing (file not found…).

§

Syntax(TurtleSyntaxError)

An error in the file syntax.