Enum semver_parser::range::Op [−][src]
pub enum Op {
Ex,
Gt,
GtEq,
Lt,
LtEq,
Tilde,
Compatible,
Wildcard(WildcardVersion),
}Enum representing operation in Predicate.
This enum represents an operation for comparing two version::Versions.
Examples
Parsing Op from string:
use semver_parser::range; use std::str::FromStr; let exact = range::Op::from_str("=")?; assert_eq!(exact, range::Op::Ex); let gt_eq = range::Op::from_str(">=")?; assert_eq!(gt_eq, range::Op::GtEq);
Variants
ExExact, =.
GtGreater than, >.
GtEqGreater than or equal to, >=.
LtLess than, <.
LtEqLess than or equal to, <=.
TildeTilde
requirements, like ~1.0.0 - a minimal version with some ability to update.
CompatibleCompatible
by definition of semver, indicated by ^.
Wildcard(WildcardVersion)x.y.*, x.*, *.
Trait Implementations
impl PartialOrd for Op[src]
impl PartialOrd for Opfn partial_cmp(&self, other: &Op) -> Option<Ordering>[src]
fn partial_cmp(&self, other: &Op) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &Op) -> bool[src]
fn lt(&self, other: &Op) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &Op) -> bool[src]
fn le(&self, other: &Op) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &Op) -> bool[src]
fn gt(&self, other: &Op) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &Op) -> bool[src]
fn ge(&self, other: &Op) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Ord for Op[src]
impl Ord for Opfn cmp(&self, other: &Op) -> Ordering[src]
fn cmp(&self, other: &Op) -> OrderingThis method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.21.0[src]
fn max(self, other: Self) -> SelfCompares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
fn min(self, other: Self) -> SelfCompares and returns the minimum of two values. Read more
impl PartialEq for Op[src]
impl PartialEq for Opfn eq(&self, other: &Op) -> bool[src]
fn eq(&self, other: &Op) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Op) -> bool[src]
fn ne(&self, other: &Op) -> boolThis method tests for !=.
impl Eq for Op[src]
impl Eq for Opimpl Debug for Op[src]
impl Debug for Opfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Clone for Op[src]
impl Clone for Opfn clone(&self) -> Op[src]
fn clone(&self) -> OpReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Hash for Op[src]
impl Hash for Opfn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash<__H: Hasher>(&self, state: &mut __H)Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, Feeds a slice of this type into the given [Hasher]. Read more
impl FromStr for Op[src]
impl FromStr for Op