pub struct VersionBound {
pub major: u32,
pub minor: Option<u32>,
pub patch: Option<u32>,
}
Expand description
A version bound for compatibility specification.
Fields§
§major: u32
The bounds’s major version.
minor: Option<u32>
The bounds’s minor version.
patch: Option<u32>
The bounds’s patch version. Can only be present if minor is too.
Trait Implementations§
source§impl Clone for VersionBound
impl Clone for VersionBound
source§fn clone(&self) -> VersionBound
fn clone(&self) -> VersionBound
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 VersionBound
impl Debug for VersionBound
source§impl<'de> Deserialize<'de> for VersionBound
impl<'de> Deserialize<'de> for VersionBound
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 VersionBound
impl Display for VersionBound
source§impl FromStr for VersionBound
impl FromStr for VersionBound
source§impl Hash for VersionBound
impl Hash for VersionBound
source§impl Ord for VersionBound
impl Ord for VersionBound
source§fn cmp(&self, other: &VersionBound) -> Ordering
fn cmp(&self, other: &VersionBound) -> 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 VersionBound
impl PartialEq for VersionBound
source§impl PartialOrd for VersionBound
impl PartialOrd for VersionBound
source§impl Serialize for VersionBound
impl Serialize for VersionBound
impl Copy for VersionBound
impl Eq for VersionBound
impl StructuralPartialEq for VersionBound
Auto Trait Implementations§
impl Freeze for VersionBound
impl RefUnwindSafe for VersionBound
impl Send for VersionBound
impl Sync for VersionBound
impl Unpin for VersionBound
impl UnwindSafe for VersionBound
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