Struct toml_document::ParserError [] [src]

pub struct ParserError {
    pub desc: String,
    // some fields omitted
}

A structure representing a parse error.

The data in this structure can be used to trace back to the original cause of the error in order to provide diagnostics about parse errors.

Fields

A human-readable description explaining what the error is.

Trait Implementations

impl Debug for ParserError
[src]

Formats the value using the given formatter.

impl Error for ParserError
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more

impl Display for ParserError
[src]

Formats the value using the given formatter. Read more