Enum comment_strip::AppError []

pub enum AppError {
    Io(Error),
    Other(&'static str),
}

Variants

Trait Implementations

impl Debug for AppError
[src]

Formats the value using the given formatter.

impl Display for AppError

Formats the value using the given formatter. Read more

impl Error for AppError

A short description of the error. Read more

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

impl From<Error> for AppError

Performs the conversion.

impl From<&'static str> for AppError

Performs the conversion.