Enum app::AppError []

pub enum AppError {
    Parse(String),
    Help(Option<String>),
    Version,
}

AppError

Variants

Trait Implementations

impl Debug for AppError
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for AppError
[src]

[src]

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

[src]

This method tests for !=.

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<String> for AppError

Performs the conversion.