[][src]Struct casperlabs_types::SemVer

pub struct SemVer {
    pub major: u32,
    pub minor: u32,
    pub patch: u32,
}

A struct for semantic versioning.

Fields

major: u32

Major version.

minor: u32

Minor version.

patch: u32

Patch version.

Methods

impl SemVer[src]

pub const V1_0_0: SemVer[src]

Version 1.0.0.

pub fn new(major: u32, minor: u32, patch: u32) -> SemVer[src]

Constructs a new SemVer from the given semver parts.

Trait Implementations

impl Clone for SemVer[src]

impl Copy for SemVer[src]

impl Debug for SemVer[src]

impl Default for SemVer[src]

impl Display for SemVer[src]

impl Eq for SemVer[src]

impl FromBytes for SemVer[src]

impl Hash for SemVer[src]

impl Ord for SemVer[src]

impl PartialEq<SemVer> for SemVer[src]

impl PartialOrd<SemVer> for SemVer[src]

impl StructuralEq for SemVer[src]

impl StructuralPartialEq for SemVer[src]

impl ToBytes for SemVer[src]

Auto Trait Implementations

impl RefUnwindSafe for SemVer

impl Send for SemVer

impl Sync for SemVer

impl Unpin for SemVer

impl UnwindSafe for SemVer

Blanket Implementations

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

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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 = Infallible

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.