#[non_exhaustive]pub enum ArchiveReadError {
IO(Error),
IntegrityCheckFailed,
SignatureMismatch,
Lz4DecompressError(Error),
}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 ArchiveReadError
impl Debug for ArchiveReadError
Source§impl From<ArchiveReadError> for Error
impl From<ArchiveReadError> for Error
Source§fn from(e: ArchiveReadError) -> Self
fn from(e: ArchiveReadError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for ArchiveReadError
impl From<Error> for ArchiveReadError
Auto Trait Implementations§
impl Freeze for ArchiveReadError
impl !RefUnwindSafe for ArchiveReadError
impl Send for ArchiveReadError
impl Sync for ArchiveReadError
impl Unpin for ArchiveReadError
impl !UnwindSafe for ArchiveReadError
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