[−][src]Struct semver::VersionReq
A VersionReq is a struct containing a list of predicates that can apply to ranges of version
numbers. Matching operations can then be done with the VersionReq against a particular
version to see if it satisfies some or all of the constraints.
Methods
impl VersionReq[src]
pub fn any() -> VersionReq[src]
any() is a factory method which creates a VersionReq with no constraints. In other
words, any version will match against it.
Examples
use semver::VersionReq; let anything = VersionReq::any();
pub fn parse(input: &str) -> Result<VersionReq, ReqParseError>[src]
parse() is the main constructor of a VersionReq. It takes a string like "^1.2.3"
and turns it into a VersionReq that matches that particular constraint.
A Result is returned which contains a ReqParseError if there was a problem parsing the
VersionReq.
Examples
use semver::VersionReq; let version = VersionReq::parse("=1.2.3"); let version = VersionReq::parse(">1.2.3"); let version = VersionReq::parse("<1.2.3"); let version = VersionReq::parse("~1.2.3"); let version = VersionReq::parse("^1.2.3"); let version = VersionReq::parse("1.2.3"); // synonym for ^1.2.3 let version = VersionReq::parse("<=1.2.3"); let version = VersionReq::parse(">=1.2.3");
This example demonstrates error handling, and will panic.
use semver::VersionReq;
let version = match VersionReq::parse("not a version") {
Ok(version) => version,
Err(e) => panic!("There was a problem parsing: {}", e),
}
pub fn exact(version: &Version) -> VersionReq[src]
exact() is a factory method which creates a VersionReq with one exact constraint.
Examples
use semver::VersionReq; use semver::Version; let version = Version { major: 1, minor: 1, patch: 1, pre: vec![], build: vec![] }; let exact = VersionReq::exact(&version);
pub fn matches(&self, version: &Version) -> bool[src]
matches() matches a given Version against this VersionReq.
Examples
use semver::VersionReq; use semver::Version; let version = Version { major: 1, minor: 1, patch: 1, pre: vec![], build: vec![] }; let exact = VersionReq::exact(&version); assert!(exact.matches(&version));
Trait Implementations
impl Eq for VersionReq[src]
impl Clone for VersionReq[src]
fn clone(&self) -> VersionReq[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl PartialOrd<VersionReq> for VersionReq[src]
fn partial_cmp(&self, other: &VersionReq) -> Option<Ordering>[src]
fn lt(&self, other: &VersionReq) -> bool[src]
fn le(&self, other: &VersionReq) -> bool[src]
fn gt(&self, other: &VersionReq) -> bool[src]
fn ge(&self, other: &VersionReq) -> bool[src]
impl PartialEq<VersionReq> for VersionReq[src]
fn eq(&self, other: &VersionReq) -> bool[src]
fn ne(&self, other: &VersionReq) -> bool[src]
impl From<VersionReq> for VersionReq[src]
fn from(other: VersionReq) -> VersionReq[src]
impl Ord for VersionReq[src]
fn cmp(&self, other: &VersionReq) -> Ordering[src]
fn max(self, other: Self) -> Self1.21.0[src]
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
Compares and returns the minimum of two values. Read more
fn clamp(self, min: Self, max: Self) -> Self[src]
clamp)Restrict a value to a certain interval. Read more
impl Hash for VersionReq[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
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
impl Display for VersionReq[src]
impl Debug for VersionReq[src]
impl FromStr for VersionReq[src]
type Err = ReqParseError
The associated error which can be returned from parsing.
fn from_str(s: &str) -> Result<VersionReq, ReqParseError>[src]
Auto Trait Implementations
impl Unpin for VersionReq
impl Sync for VersionReq
impl Send for VersionReq
impl UnwindSafe for VersionReq
impl RefUnwindSafe for VersionReq
Blanket Implementations
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,