Struct semver::Version [] [src]

pub struct Version {
    pub major: u64,
    pub minor: u64,
    pub patch: u64,
    pub pre: Vec<Identifier>,
    pub build: Vec<Identifier>,
}

Represents a version number conforming to the semantic versioning scheme.

Fields

major: u64

The major version, to be incremented on incompatible changes.

minor: u64

The minor version, to be incremented when functionality is added in a backwards-compatible manner.

patch: u64

The patch version, to be incremented when backwards-compatible bug fixes are made.

pre: Vec<Identifier>

The pre-release version identifier, if one exists.

build: Vec<Identifier>

The build metadata, ignored when determining version precedence.

Methods

impl Version
[src]

fn parse(s: &str) -> Result<VersionParseError>

Parse a string into a semver object.

Trait Implementations

impl Debug for Version
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Eq for Version
[src]

impl Clone for Version
[src]

fn clone(&self) -> Version

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Display for Version
[src]

fn fmt(&self, f: &mut Formatter) -> Result

Formats the value using the given formatter.

impl PartialEq for Version
[src]

fn eq(&self, other: &Version) -> bool

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

fn ne(&self, other: &Rhs) -> bool
1.0.0

This method tests for !=.

impl PartialOrd for Version
[src]

fn partial_cmp(&self, other: &Version) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more

fn lt(&self, other: &Rhs) -> bool
1.0.0

This method tests less than (for self and other) and is used by the < operator. Read more

fn le(&self, other: &Rhs) -> bool
1.0.0

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

fn gt(&self, other: &Rhs) -> bool
1.0.0

This method tests greater than (for self and other) and is used by the > operator. Read more

fn ge(&self, other: &Rhs) -> bool
1.0.0

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Ord for Version
[src]

fn cmp(&self, other: &Version) -> Ordering

This method returns an Ordering between self and other. Read more

impl Hash for Version
[src]

fn hash<H: Hasher>(&self, into: &mut H)

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

fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher
1.3.0

Feeds a slice of this type into the state provided.