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(version: &str) -> Result<Version, SemVerError>
Parse a string into a semver object.
fn increment_patch(&mut self)
Increments the patch number for this Version (Must be mutable)
fn increment_minor(&mut self)
Increments the minor version number for this Version (Must be mutable)
As instructed by section 7 of the spec, the patch number is reset to 0.
fn increment_major(&mut self)
Increments the major version number for this Version (Must be mutable)
As instructed by section 8 of the spec, the minor and patch numbers are reset to 0
fn is_prerelease(&self) -> bool
Checks to see if the current Version is in pre-release status
Trait Implementations
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 Eq for Version[src]
impl Debug for Version[src]
impl From<Version> for Version[src]
impl FromStr for Version[src]
type Err = SemVerError
The associated error which can be returned from parsing.
fn from_str(s: &str) -> Result<Version, SemVerError>
Parses a string s to return a value of this type. Read more
impl Display for Version[src]
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) -> bool1.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) -> bool1.0.0
This method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &Rhs) -> bool1.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) -> bool1.0.0
This method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &Rhs) -> bool1.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: Hasher1.3.0
Feeds a slice of this type into the state provided.