Struct semver::Comparator
source · [−]pub struct Comparator {
pub op: Op,
pub major: u64,
pub minor: Option<u64>,
pub patch: Option<u64>,
pub pre: Prerelease,
}
Expand description
A pair of comparison operator and partial version, such as >=1.2
. Forms
one piece of a VersionReq.
Fields
op: Op
major: u64
minor: Option<u64>
patch: Option<u64>
Patch is only allowed if minor is Some.
pre: Prerelease
Non-empty pre-release is only allowed if patch is Some.
Implementations
Trait Implementations
sourceimpl Clone for Comparator
impl Clone for Comparator
sourcefn clone(&self) -> Comparator
fn clone(&self) -> Comparator
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for Comparator
impl Debug for Comparator
sourceimpl<'de> Deserialize<'de> for Comparator
impl<'de> Deserialize<'de> for Comparator
sourcefn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl Display for Comparator
impl Display for Comparator
sourceimpl FromIterator<Comparator> for VersionReq
impl FromIterator<Comparator> for VersionReq
sourcefn from_iter<I>(iter: I) -> Self where
I: IntoIterator<Item = Comparator>,
fn from_iter<I>(iter: I) -> Self where
I: IntoIterator<Item = Comparator>,
Creates a value from an iterator. Read more
sourceimpl FromStr for Comparator
impl FromStr for Comparator
sourceimpl Hash for Comparator
impl Hash for Comparator
sourceimpl PartialEq<Comparator> for Comparator
impl PartialEq<Comparator> for Comparator
sourcefn eq(&self, other: &Comparator) -> bool
fn eq(&self, other: &Comparator) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &Comparator) -> bool
fn ne(&self, other: &Comparator) -> bool
This method tests for !=
.
sourceimpl Serialize for Comparator
impl Serialize for Comparator
impl Eq for Comparator
impl StructuralEq for Comparator
impl StructuralPartialEq for Comparator
Auto Trait Implementations
impl RefUnwindSafe for Comparator
impl Send for Comparator
impl Sync for Comparator
impl Unpin for Comparator
impl UnwindSafe for Comparator
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more