pub enum CodeError {
Fault(MemFault),
Decode(Box<str>),
}Expand description
Why a lifting attempt failed.
Variants§
Fault(MemFault)
The instruction bytes could not be fetched.
Decode(Box<str>)
The bytes were fetched but did not decode, or did not lift.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CodeError
impl RefUnwindSafe for CodeError
impl Send for CodeError
impl Sync for CodeError
impl Unpin for CodeError
impl UnsafeUnpin for CodeError
impl UnwindSafe for CodeError
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