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.
VersionReq
: struct.VersionReq.html
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
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
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
backtrace
)Returns a stack backtrace, if available, of where this error occurred. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
use the Display impl or to_string()
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