Enum git_release_name::ParsePhraseError [] [src]

pub enum ParsePhraseError {
    WordNotFound,
    Sha(ParseShaError),
    // some variants omitted
}

Represents failures during parsing.

Variants

The word was not found in the dictionary

Trait Implementations

impl Debug for ParsePhraseError
[src]

[src]

Formats the value using the given formatter. Read more

impl Eq for ParsePhraseError
[src]

impl PartialEq for ParsePhraseError
[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 Clone for ParsePhraseError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for ParsePhraseError
[src]

Auto Trait Implementations