pub enum StableVersionParseError {
// some variants omitted
}
Expand description
An error while parsing a StableVersionSpec
.
The specifics of this error are implementation-dependent.
Trait Implementations§
Source§impl Clone for StableVersionParseError
impl Clone for StableVersionParseError
Source§fn clone(&self) -> StableVersionParseError
fn clone(&self) -> StableVersionParseError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for StableVersionParseError
impl Debug for StableVersionParseError
Source§impl From<ParseIntError> for StableVersionParseError
impl From<ParseIntError> for StableVersionParseError
Source§fn from(cause: ParseIntError) -> Self
fn from(cause: ParseIntError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for StableVersionParseError
impl RefUnwindSafe for StableVersionParseError
impl Send for StableVersionParseError
impl Sync for StableVersionParseError
impl Unpin for StableVersionParseError
impl UnwindSafe for StableVersionParseError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more