Struct sexp::Error [] [src]

pub struct Error {
    pub message: &'static str,
    pub line: usize,
    pub column: usize,
    pub index: usize,
}

The representation of an s-expression parse error.

Fields

The error message.

The line number on which the error occurred.

The column number on which the error occurred.

The index in the given string which caused the error.

Trait Implementations

impl Error for Error
[src]

A short description of the error. Read more

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

impl Display for Error
[src]

Formats the value using the given formatter. Read more

impl Debug for Error
[src]

Formats the value using the given formatter.