Enum crowbook::Error [] [src]

pub enum Error {
    Parser(String),
    ConfigParser(&'static strString),
    FileNotFound(String),
    Render(String),
    Zipper(String),
    BookOption(String),
    InvalidOption(String),
}

Crowbook's error type

Variants

An error in Parsing markdown file

An error in parsing a book configuration file

An error when a file is not found

An error in a renderer

An error during "zipping" processus

An error relative to BookOption convertion (usually a type error)

An invalid option

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl PartialEq for Error
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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.