Enum dia_semver::SemverErrorKind[][src]

pub enum SemverErrorKind {
    Empty,
    InvalidMajor,
    InvalidMinor,
    InvalidPatch,
    InvalidToken,
    InvalidPreRelease,
    InvalidBuildMetadata,
    ParserError,
}

Variants

Trait Implementations

impl Debug for SemverErrorKind
[src]

Formats the value using the given formatter. Read more

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

Auto Trait Implementations