Struct semver::VersionReq [−][src]
pub struct VersionReq { /* fields omitted */ }
Expand description
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.
Implementations
impl VersionReq
[src]
impl VersionReq
[src]pub fn any() -> 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]
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]
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]
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 Clone for VersionReq
[src]
impl Clone for VersionReq
[src]fn clone(&self) -> VersionReq
[src]
fn clone(&self) -> VersionReq
[src]Returns 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)
1.0.0[src]Performs copy-assignment from source
. Read more
impl Debug for VersionReq
[src]
impl Debug for VersionReq
[src]impl<'de> Deserialize<'de> for VersionReq
[src]
impl<'de> Deserialize<'de> for VersionReq
[src]fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]Deserialize this value from the given Serde deserializer. Read more
impl Display for VersionReq
[src]
impl Display for VersionReq
[src]impl From<VersionReq> for VersionReq
[src]
impl From<VersionReq> for VersionReq
[src]fn from(other: VersionReq) -> VersionReq
[src]
fn from(other: VersionReq) -> VersionReq
[src]Performs the conversion.
impl FromStr for VersionReq
[src]
impl FromStr for VersionReq
[src]type Err = ReqParseError
type Err = ReqParseError
The associated error which can be returned from parsing.
fn from_str(s: &str) -> Result<VersionReq, ReqParseError>
[src]
fn from_str(s: &str) -> Result<VersionReq, ReqParseError>
[src]Parses a string s
to return a value of this type. Read more
impl Hash for VersionReq
[src]
impl Hash for VersionReq
[src]impl Ord for VersionReq
[src]
impl Ord for VersionReq
[src]impl PartialEq<VersionReq> for VersionReq
[src]
impl PartialEq<VersionReq> for VersionReq
[src]fn eq(&self, other: &VersionReq) -> bool
[src]
fn eq(&self, other: &VersionReq) -> bool
[src]This method tests for self
and other
values to be equal, and is used
by ==
. Read more
fn ne(&self, other: &VersionReq) -> bool
[src]
fn ne(&self, other: &VersionReq) -> bool
[src]This method tests for !=
.
impl PartialOrd<VersionReq> for VersionReq
[src]
impl PartialOrd<VersionReq> for VersionReq
[src]fn partial_cmp(&self, other: &VersionReq) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &VersionReq) -> Option<Ordering>
[src]This method returns an ordering between self
and other
values if one exists. Read more
#[must_use]fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool
1.0.0[src]This method tests less than (for self
and other
) and is used by the <
operator. Read more
#[must_use]fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool
1.0.0[src]This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Serialize for VersionReq
[src]
impl Serialize for VersionReq
[src]impl Eq for VersionReq
[src]
impl StructuralEq for VersionReq
[src]
impl StructuralPartialEq for VersionReq
[src]
Auto Trait Implementations
impl RefUnwindSafe for VersionReq
impl Send for VersionReq
impl Sync for VersionReq
impl Unpin for VersionReq
impl UnwindSafe for VersionReq
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,