Enum erl_pp::ErrorKind [] [src]

pub enum ErrorKind {
    InvalidInput,
    UnexpectedToken(LexicalToken),
    UnexpectedEos,
}

The list of the possible error kinds

Variants

Input is invalid.

Unexpected token.

Unexpected End-Of-String.

Trait Implementations

impl Debug for ErrorKind
[src]

Formats the value using the given formatter.

impl Clone for ErrorKind
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl TrackableErrorKind for ErrorKind
[src]

A short description of the error kind. Read more

Displays this kind. Read more

Returns whether the error of this kind is needed to be tracked. Read more

Returns whether the error of this kind is needed to be assigned a tracking number automatically. Read more