Enum strum::ParseError [] [src]

pub enum ParseError {
    VariantNotFound,
}

The ParseError enum is a collection of all the possible reasons an enum can fail to parse from a string.

Variants

Trait Implementations

impl Debug for ParseError
[src]

Formats the value using the given formatter.

impl Clone for ParseError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for ParseError
[src]

impl Eq for ParseError
[src]

impl PartialEq for ParseError
[src]

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

This method tests for !=.

impl Hash for ParseError
[src]

Feeds this value into the state given, updating the hasher as necessary.

Feeds a slice of this type into the state provided.

impl Display for ParseError
[src]

Formats the value using the given formatter.

impl Error for ParseError
[src]

A short description of the error. Read more

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