[][src]Struct semver2::Version

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

A single semver compliant version.

Fields

major: u64

The major version.

minor: u64

The minor version.

patch: u64

The patch version.

prerelease: Vec<Identifier>

The prerelease version.

build: Vec<Identifier>

The build version.

Methods

impl Version[src]

pub fn new(major: u64, minor: u64, patch: u64) -> Self[src]

Create a new version.

use semver2::Version;

assert_eq!(&Version::new(2, 3, 0).to_string(), "2.3.0");

pub fn new_prerelease(
    major: u64,
    minor: u64,
    patch: u64,
    prerelease: Vec<Identifier>
) -> Self
[src]

Create a new version.

use semver2::Version;

assert_eq!(
    &Version::new_prerelease(2, 3, 0, vec!["alpha".parse().unwrap()]).to_string(),
    "2.3.0-alpha"
);

pub fn new_build(
    major: u64,
    minor: u64,
    patch: u64,
    build: Vec<Identifier>
) -> Self
[src]

Create a new version.

use semver2::Version;

assert_eq!(
    &Version::new_build(2, 3, 0, vec!["githash".parse().unwrap()]).to_string(),
    "2.3.0+githash"
);

Trait Implementations

impl Clone for Version[src]

impl Default for Version[src]

impl Eq for Version[src]

impl PartialEq<Version> for Version[src]

impl Debug for Version[src]

impl Display for Version[src]

impl FromStr for Version[src]

type Err = ParseError

The associated error which can be returned from parsing.

impl StructuralPartialEq for Version[src]

impl StructuralEq for Version[src]

Auto Trait Implementations

impl Send for Version

impl Sync for Version

impl Unpin for Version

impl UnwindSafe for Version

impl RefUnwindSafe for Version

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]