pub enum InReleaseParserError {
VerifyError(VerifyError),
BadInReleaseData,
BadInReleaseVaildUntil,
EarlierSignature(String),
ExpiredSignature(String),
BadSha256Value(String),
BadChecksumEntry(String),
InReleaseSyntaxError,
UnsupportFileType,
ParseIntError(ParseIntError),
}Variants§
VerifyError(VerifyError)
BadInReleaseData
BadInReleaseVaildUntil
EarlierSignature(String)
ExpiredSignature(String)
BadSha256Value(String)
BadChecksumEntry(String)
InReleaseSyntaxError
UnsupportFileType
ParseIntError(ParseIntError)
Trait Implementations§
source§impl Debug for InReleaseParserError
impl Debug for InReleaseParserError
source§impl Display for InReleaseParserError
impl Display for InReleaseParserError
source§impl Error for InReleaseParserError
impl Error for InReleaseParserError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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<VerifyError> for InReleaseParserError
impl From<VerifyError> for InReleaseParserError
source§fn from(source: VerifyError) -> Self
fn from(source: VerifyError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InReleaseParserError
impl !RefUnwindSafe for InReleaseParserError
impl Send for InReleaseParserError
impl Sync for InReleaseParserError
impl Unpin for InReleaseParserError
impl !UnwindSafe for InReleaseParserError
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