pub enum Error {
TruncatedHeader {
got: usize,
},
UnsupportedVersion {
version: u64,
raw: u64,
},
TruncatedV1Name {
got: usize,
needed: usize,
},
TruncatedV2Length {
got: usize,
needed: usize,
},
NameLengthTooLarge {
chars: u32,
},
TruncatedV2Name {
got: usize,
needed: usize,
},
}Expand description
Errors returned while parsing a $I index file.
Variants§
TruncatedHeader
The file is shorter than the 24-byte fixed header.
UnsupportedVersion
The 8-byte version field at offset 0 is neither 1 nor 2.
Fields
TruncatedV1Name
A version-1 file does not contain the full fixed 520-byte name field.
TruncatedV2Length
A version-2 file is too short to hold the 4-byte name-length field.
NameLengthTooLarge
The version-2 name-length field exceeds [MAX_V2_NAME_CHARS] — rejected
before allocating to defend against a hostile length.
TruncatedV2Name
The version-2 name-length field claims more bytes than the file holds.
Trait Implementations§
impl Eq for Error
Source§impl Error for Error
impl Error for Error
1.30.0 · 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()
impl StructuralPartialEq for Error
Auto Trait Implementations§
impl Freeze for Error
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnsafeUnpin for Error
impl UnwindSafe for Error
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