pub enum Error {
Show 21 variants
InvalidInteger {
kind: IntErrorKind,
},
InvalidVariant(ParseError),
InvalidEmail(Error),
InvalidUrl(ParseError),
InvalidLicense(ParseError),
InvalidSemver {
kind: String,
},
ValueContainsInvalidChars {
invalid_char: char,
},
IncorrectLength {
length: usize,
expected: usize,
},
DelimiterNotFound {
delimiter: char,
},
ValueDoesNotMatchRestrictions {
restrictions: Vec<String>,
},
RegexDoesNotMatch {
value: String,
regex_type: String,
regex: String,
},
ParseError(String),
MissingComponent {
component: &'static str,
},
PathNotAbsolute(PathBuf),
PathNotRelative(PathBuf),
FileNameContainsInvalidChars(PathBuf, char),
FileNameIsEmpty,
DeprecatedLicense(String),
InvalidOpenPGPv4Fingerprint,
InvalidOpenPGPKeyId(String),
InvalidSonameV1(&'static str),
}
Expand description
The library’s error type
These errors are usually parsing errors and they each contain a context about why the error has occurred and the value that caused the error.
The original error is also included in the variants that have the source
field.
You can access it using the source()
method.
See Error::source for
more information.
Variants§
InvalidInteger
An invalid integer
Fields
kind: IntErrorKind
InvalidVariant(ParseError)
An invalid enum variant
InvalidEmail(Error)
An invalid email address
InvalidUrl(ParseError)
An invalid URL
InvalidLicense(ParseError)
An invalid license
InvalidSemver
An invalid semantic version string
This error occurs when a semantic version cannot be parsed from a string
We cannot use #[source] semver::Error
here because it does not implement PartialEq
.
See: https://github.com/dtolnay/semver/issues/326
TODO: Use the error source when the issue above is resolved.
ValueContainsInvalidChars
Value contains invalid characters
IncorrectLength
Value length is incorrect
DelimiterNotFound
Value is missing a delimiter character
ValueDoesNotMatchRestrictions
Value does not match the restrictions
RegexDoesNotMatch
A validation regex does not match the value
ParseError(String)
A winnow parser for a type didn’t work and produced an error.
MissingComponent
Missing field in a value
PathNotAbsolute(PathBuf)
An invalid absolute path (i.e. does not start with a /
)
PathNotRelative(PathBuf)
An invalid relative path (i.e. starts with a /
)
FileNameContainsInvalidChars(PathBuf, char)
File name contains invalid characters
FileNameIsEmpty
File name is empty
DeprecatedLicense(String)
A deprecated license
InvalidOpenPGPv4Fingerprint
An invalid OpenPGP v4 fingerprint
InvalidOpenPGPKeyId(String)
An invalid OpenPGP key ID
InvalidSonameV1(&'static str)
An invalid shared object name (v1)
Trait Implementations§
Source§impl Error for Error
impl Error for Error
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
Source§impl<'a> From<ParseError<&'a str, ContextError>> for Error
impl<'a> From<ParseError<&'a str, ContextError>> for Error
Source§fn from(value: ParseError<&'a str, ContextError>) -> Self
fn from(value: ParseError<&'a str, ContextError>) -> Self
Converts a [winnow::error::ParseError
] into an Error::ParseError
.
Source§impl From<ParseError> for Error
impl From<ParseError> for Error
Source§fn from(source: ParseError) -> Self
fn from(source: ParseError) -> Self
Source§impl From<ParseIntError> for Error
impl From<ParseIntError> for Error
Source§fn from(e: ParseIntError) -> Self
fn from(e: ParseIntError) -> Self
Converts a std::num::ParseIntError
into an Error::InvalidInteger
.