Enum seiri::Error []

pub enum Error {
    UnsupportedFile(PathBuf),
    FileNotFound(String),
    UnableToMove(String),
    UnableToCreateDirectory(String),
    UnsupportedOS,
    HelperNotFound,
    MissingRequiredTag(String, &'static str),
    LexerUnexpectedCharacter(char, LexerMode),
    LexerUnexpectedEscapeCharacter(LexerMode),
    LexerUnexpectedEndOfInput,
    ParserUnexpectedToken(Token),
    ParserUnknownBang(String),
    ParserInvalidInput(String),
}

Variants

Trait Implementations

impl Debug for Error
[src]

[src]

Formats the value using the given formatter. Read more

impl Display for Error

Formats the value using the given formatter. Read more

impl Error for Error

A short description of the error. Read more

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

Auto Trait Implementations

impl Send for Error

impl Sync for Error