Struct reproto_semver::range::Range
[−]
[src]
pub struct Range { pub predicates: Vec<Predicate>, }
A Range
is a struct containing a list of predicates that can apply to ranges of version
numbers. Matching operations can then be done with the Range
against a particular
version to see if it satisfies some or all of the constraints.
Fields
predicates: Vec<Predicate>
Methods
impl Range
[src]
fn any() -> Range
[src]
any()
is a factory method which creates a Range
with no constraints. In other
words, any version will match against it.
Examples
use reproto_semver::Range; let anything = Range::any();
fn parse(input: &str) -> Result<Range, Error>
[src]
parse()
is the main constructor of a Range
. It takes a string like "^1.2.3"
and turns it into a Range
that matches that particular constraint.
A Result
is returned which contains a Error
if there was a problem parsing the Range
.
Examples
use reproto_semver::Range; let version = Range::parse("=1.2.3"); let version = Range::parse(">1.2.3"); let version = Range::parse("<1.2.3"); let version = Range::parse("~1.2.3"); let version = Range::parse("^1.2.3"); let version = Range::parse("1.2.3"); // synonym for ^1.2.3 let version = Range::parse("<=1.2.3"); let version = Range::parse(">=1.2.3");
This example demonstrates error handling, and will panic.
use reproto_semver::Range;
let version = match Range::parse("not a version") {
Ok(version) => version,
Err(e) => panic!("There was a problem parsing: {}", e),
}
fn exact(version: &Version) -> Range
[src]
exact()
is a factory method which creates a Range
with one exact constraint.
Examples
use reproto_semver::Range; use reproto_semver::Version; let version = Version { major: 1, minor: 1, patch: 1, pre: vec![], build: vec![] }; let exact = Range::exact(&version);
fn matches(&self, version: &Version) -> bool
[src]
matches()
matches a given Version
against this Range
.
Examples
use reproto_semver::Range; use reproto_semver::Version; let version = Version { major: 1, minor: 1, patch: 1, pre: vec![], build: vec![] }; let exact = Range::exact(&version); assert!(exact.matches(&version));
fn matches_any(&self) -> bool
[src]
Check if range matches any.
Trait Implementations
impl Clone for Range
[src]
fn clone(&self) -> Range
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl PartialEq for Range
[src]
fn eq(&self, __arg_0: &Range) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &Range) -> bool
[src]
This method tests for !=
.
impl Eq for Range
[src]
impl PartialOrd for Range
[src]
fn partial_cmp(&self, __arg_0: &Range) -> Option<Ordering>
[src]
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, __arg_0: &Range) -> bool
[src]
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, __arg_0: &Range) -> bool
[src]
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, __arg_0: &Range) -> bool
[src]
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, __arg_0: &Range) -> bool
[src]
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl Ord for Range
[src]
fn cmp(&self, __arg_0: &Range) -> Ordering
[src]
This method returns an Ordering
between self
and other
. Read more
fn max(self, other: Self) -> Self
1.22.0[src]
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
1.22.0[src]
Compares and returns the minimum of two values. Read more
impl Hash for Range
[src]
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)
[src]
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]
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more