pub struct PackageVersion {
pub major: u32,
pub minor: u32,
pub patch: u32,
}
Expand description
A package’s version.
Fields§
§major: u32
The package’s major version.
minor: u32
The package’s minor version.
patch: u32
The package’s patch version.
Implementations§
source§impl PackageVersion
impl PackageVersion
sourcepub fn matches_eq(&self, bound: &VersionBound) -> bool
pub fn matches_eq(&self, bound: &VersionBound) -> bool
Performs an ==
match with the given version bound. Version elements
missing in the bound are ignored.
sourcepub fn matches_gt(&self, bound: &VersionBound) -> bool
pub fn matches_gt(&self, bound: &VersionBound) -> bool
Performs a >
match with the given version bound. The match only
succeeds if some version element in the bound is actually greater than
that of the version.
sourcepub fn matches_lt(&self, bound: &VersionBound) -> bool
pub fn matches_lt(&self, bound: &VersionBound) -> bool
Performs a <
match with the given version bound. The match only
succeeds if some version element in the bound is actually less than that
of the version.
sourcepub fn matches_ge(&self, bound: &VersionBound) -> bool
pub fn matches_ge(&self, bound: &VersionBound) -> bool
Performs a >=
match with the given versions. The match succeeds when
either a ==
or >
match does.
sourcepub fn matches_le(&self, bound: &VersionBound) -> bool
pub fn matches_le(&self, bound: &VersionBound) -> bool
Performs a <=
match with the given versions. The match succeeds when
either a ==
or <
match does.
Trait Implementations§
source§impl Clone for PackageVersion
impl Clone for PackageVersion
source§fn clone(&self) -> PackageVersion
fn clone(&self) -> PackageVersion
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for PackageVersion
impl Debug for PackageVersion
source§impl<'de> Deserialize<'de> for PackageVersion
impl<'de> Deserialize<'de> for PackageVersion
source§fn deserialize<D: Deserializer<'de>>(d: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(d: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for PackageVersion
impl Display for PackageVersion
source§impl FromStr for PackageVersion
impl FromStr for PackageVersion
source§impl Hash for PackageVersion
impl Hash for PackageVersion
source§impl Ord for PackageVersion
impl Ord for PackageVersion
source§fn cmp(&self, other: &PackageVersion) -> Ordering
fn cmp(&self, other: &PackageVersion) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for PackageVersion
impl PartialEq for PackageVersion
source§impl PartialOrd for PackageVersion
impl PartialOrd for PackageVersion
source§impl Serialize for PackageVersion
impl Serialize for PackageVersion
impl Copy for PackageVersion
impl Eq for PackageVersion
impl StructuralPartialEq for PackageVersion
Auto Trait Implementations§
impl Freeze for PackageVersion
impl RefUnwindSafe for PackageVersion
impl Send for PackageVersion
impl Sync for PackageVersion
impl Unpin for PackageVersion
impl UnwindSafe for PackageVersion
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more