Enum semver::ReqParseError
source · [−]pub enum ReqParseError {
InvalidVersionRequirement,
OpAlreadySet,
InvalidSigil,
VersionComponentsMustBeNumeric,
InvalidIdentifier,
MajorVersionRequired,
UnimplementedVersionRequirement,
DeprecatedVersionRequirement(VersionReq),
}Expand description
A ReqParseError is returned from methods which parse a string into a VersionReq. Each
enumeration is one of the possible errors that can occur.
Variants
InvalidVersionRequirement
The given version requirement is invalid.
OpAlreadySet
You have already provided an operation, such as =, ~, or ^. Only use one.
InvalidSigil
The sigil you have written is not correct.
VersionComponentsMustBeNumeric
All components of a version must be numeric.
InvalidIdentifier
There was an error parsing an identifier.
MajorVersionRequired
At least a major version is required.
UnimplementedVersionRequirement
An unimplemented version requirement.
DeprecatedVersionRequirement(VersionReq)
This form of requirement is deprecated.
Trait Implementations
sourceimpl Clone for ReqParseError
impl Clone for ReqParseError
sourcefn clone(&self) -> ReqParseError
fn clone(&self) -> ReqParseError
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 ReqParseError
impl Debug for ReqParseError
sourceimpl Display for ReqParseError
impl Display for ReqParseError
sourceimpl Error for ReqParseError
impl Error for ReqParseError
sourcefn description(&self) -> &str
fn description(&self) -> &str
use the Display impl or to_string()
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourceimpl From<String> for ReqParseError
impl From<String> for ReqParseError
sourcefn from(other: String) -> ReqParseError
fn from(other: String) -> ReqParseError
Performs the conversion.
sourceimpl PartialEq<ReqParseError> for ReqParseError
impl PartialEq<ReqParseError> for ReqParseError
sourcefn eq(&self, other: &ReqParseError) -> bool
fn eq(&self, other: &ReqParseError) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &ReqParseError) -> bool
fn ne(&self, other: &ReqParseError) -> bool
This method tests for !=.
impl StructuralPartialEq for ReqParseError
Auto Trait Implementations
impl RefUnwindSafe for ReqParseError
impl Send for ReqParseError
impl Sync for ReqParseError
impl Unpin for ReqParseError
impl UnwindSafe for ReqParseError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more
