#[non_exhaustive]pub enum Op {
Exact,
Greater,
GreaterEq,
Less,
LessEq,
Tilde,
Caret,
Wildcard,
}
Expand description
SemVer comparison operator: =
, >
, >=
, <
, <=
, ~
, ^
, *
.
§Op::Exact
-
=I.J.K
— exactly the version I.J.K -
=I.J
— equivalent to>=I.J.0, <I.(J+1).0
-
=I
— equivalent to>=I.0.0, <(I+1).0.0
§Op::Greater
-
>I.J.K
-
>I.J
— equivalent to>=I.(J+1).0
-
>I
— equivalent to>=(I+1).0.0
§Op::GreaterEq
-
>=I.J.K
-
>=I.J
— equivalent to>=I.J.0
-
>=I
— equivalent to>=I.0.0
§Op::Less
-
<I.J.K
-
<I.J
— equivalent to<I.J.0
-
<I
— equivalent to<I.0.0
§Op::LessEq
-
<=I.J.K
-
<=I.J
— equivalent to<I.(J+1).0
-
<=I
— equivalent to<(I+1).0.0
§Op::Tilde (“patch” updates)
Tilde requirements allow the patch part of the semver version (the third number) to increase.
-
~I.J.K
— equivalent to>=I.J.K, <I.(J+1).0
-
~I.J
— equivalent to=I.J
-
~I
— equivalent to=I
§Op::Caret (“compatible” updates)
Caret requirements allow parts that are right of the first nonzero part of the semver version to increase.
-
^I.J.K
(for I>0) — equivalent to>=I.J.K, <(I+1).0.0
-
^0.J.K
(for J>0) — equivalent to>=0.J.K, <0.(J+1).0
-
^0.0.K
— equivalent to=0.0.K
-
^I.J
(for I>0 or J>0) — equivalent to^I.J.0
-
^0.0
— equivalent to=0.0
-
^I
— equivalent to=I
§Op::Wildcard
-
I.J.*
— equivalent to=I.J
-
I.*
orI.*.*
— equivalent to=I
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
impl Copy for Op
impl Eq for Op
impl StructuralPartialEq for Op
Auto Trait Implementations§
impl Freeze for Op
impl RefUnwindSafe for Op
impl Send for Op
impl Sync for Op
impl Unpin for Op
impl UnwindSafe for Op
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§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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
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