#[non_exhaustive]enum RustVersionErrorKind {
Prerelease,
BuildMetadata,
PartialVersion(PartialVersionError),
}
Expand description
Non-public error kind for RustVersionError
.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
source§impl Debug for RustVersionErrorKind
impl Debug for RustVersionErrorKind
source§impl Display for RustVersionErrorKind
impl Display for RustVersionErrorKind
source§impl Error for RustVersionErrorKind
impl Error for RustVersionErrorKind
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<PartialVersionError> for RustVersionErrorKind
impl From<PartialVersionError> for RustVersionErrorKind
source§fn from(source: PartialVersionError) -> Self
fn from(source: PartialVersionError) -> Self
Converts to this type from the input type.
source§impl From<RustVersionErrorKind> for RustVersionError
impl From<RustVersionErrorKind> for RustVersionError
source§fn from(source: RustVersionErrorKind) -> Self
fn from(source: RustVersionErrorKind) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RustVersionErrorKind
impl RefUnwindSafe for RustVersionErrorKind
impl Send for RustVersionErrorKind
impl Sync for RustVersionErrorKind
impl Unpin for RustVersionErrorKind
impl UnwindSafe for RustVersionErrorKind
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
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 1 byte
Size for each variant:
Prerelease
: 0 bytesBuildMetadata
: 0 bytesPartialVersion
: 1 byte