Enum assembly_core::reader::FileError  
source · pub enum FileError {
    IO(Error),
    Count(TryFromIntError),
    Incomplete,
    Parse {
        addr: u64,
        offset: usize,
        code: ErrorKind,
    },
    StringEncoding(String),
    NotImplemented,
    Custom(&'static str),
}Expand description
Error when parsing a file
Variants§
IO(Error)
IO Error {0:?}
Count(TryFromIntError)
Count Error {0:?}
Incomplete
Nom Incomplete
Parse
Nom Error at {addr}+{offset}: {code:?}
Fields
§
code: ErrorKindThe nom error kind
StringEncoding(String)
Encoding {0:?}
NotImplemented
Not Implemented
Custom(&'static str)
{0}
Trait Implementations§
source§impl Error for FileError
 
impl Error for FileError
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()
Auto Trait Implementations§
impl Freeze for FileError
impl !RefUnwindSafe for FileError
impl Send for FileError
impl Sync for FileError
impl Unpin for FileError
impl !UnwindSafe for FileError
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