Enum ezomyte::ParseLeagueError [] [src]

pub enum ParseLeagueError {
    Empty,
    Malformed,
}

Error while converting a string league name to League type.

Variants

Error for when the league name is empty.

Error for when the league name is malformed.

Trait Implementations

impl Clone for ParseLeagueError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for ParseLeagueError
[src]

impl Debug for ParseLeagueError
[src]

[src]

Formats the value using the given formatter. Read more

impl Eq for ParseLeagueError
[src]

impl PartialEq for ParseLeagueError
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl Error for ParseLeagueError
[src]

[src]

A short description of the error. Read more

[src]

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

impl Display for ParseLeagueError
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations