Enum rdf::error::ErrorType[][src]

pub enum ErrorType {
    InvalidWriterOutput,
    InvalidReaderInput,
    InvalidToken,
    EndOfInput(InputChars),
    InvalidByteEncoding,
    InvalidNamespace,
}

Different types of errors that can occur.

Variants

RDF writer produces invalid RDF (e.g. if invalid node types are provided).

RDF lexer reads invalid RDF (e.g. non-closing string).

RDF reader reads an invalid token (e.g. invalid node type).

RDF reader reaches the end of the input and stores the characters that were read last.

Input reader encounters invalid byte encoding.

Incorrect namespace.

Trait Implementations

impl Debug for ErrorType
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for ErrorType

impl Sync for ErrorType