Enum semver_parser::version::Identifier [] [src]

pub enum Identifier {
    Numeric(u64),
    AlphaNumeric(String),
}

Variants

An identifier that's solely numbers.

An identifier with letters and numbers.

Trait Implementations

impl Clone for Identifier
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Identifier
[src]

Formats the value using the given formatter.

impl PartialEq for Identifier
[src]

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

This method tests for !=.

impl Eq for Identifier
[src]

impl Display for Identifier
[src]

Formats the value using the given formatter.