pub enum SourceRoundTripError {
UnknownFormat,
Io(Error),
Decompile(Error),
Decompile6502(Error),
ElfFormat(Error),
PeFormat(Error),
MachoFormat(Error),
Parse(String),
ElfLower(ElfLowerError),
PeLower(PeLowerError),
MachoLower(MachoLowerError),
RawLower(RawLowerError),
}Variants§
UnknownFormat
Io(Error)
Decompile(Error)
Decompile6502(Error)
ElfFormat(Error)
PeFormat(Error)
MachoFormat(Error)
Parse(String)
ElfLower(ElfLowerError)
PeLower(PeLowerError)
MachoLower(MachoLowerError)
RawLower(RawLowerError)
Trait Implementations§
Source§impl Debug for SourceRoundTripError
impl Debug for SourceRoundTripError
Source§impl Display for SourceRoundTripError
impl Display for SourceRoundTripError
Source§impl Error for SourceRoundTripError
impl Error for SourceRoundTripError
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()
Source§impl From<ElfLowerError> for SourceRoundTripError
impl From<ElfLowerError> for SourceRoundTripError
Source§fn from(source: ElfLowerError) -> Self
fn from(source: ElfLowerError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for SourceRoundTripError
impl From<Error> for SourceRoundTripError
Source§impl From<Error> for SourceRoundTripError
impl From<Error> for SourceRoundTripError
Source§impl From<Error> for SourceRoundTripError
impl From<Error> for SourceRoundTripError
Source§impl From<Error> for SourceRoundTripError
impl From<Error> for SourceRoundTripError
Source§impl From<Error> for SourceRoundTripError
impl From<Error> for SourceRoundTripError
Source§impl From<MachoLowerError> for SourceRoundTripError
impl From<MachoLowerError> for SourceRoundTripError
Source§fn from(source: MachoLowerError) -> Self
fn from(source: MachoLowerError) -> Self
Converts to this type from the input type.
Source§impl From<PeLowerError> for SourceRoundTripError
impl From<PeLowerError> for SourceRoundTripError
Source§fn from(source: PeLowerError) -> Self
fn from(source: PeLowerError) -> Self
Converts to this type from the input type.
Source§impl From<RawLowerError> for SourceRoundTripError
impl From<RawLowerError> for SourceRoundTripError
Source§fn from(source: RawLowerError) -> Self
fn from(source: RawLowerError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SourceRoundTripError
impl !RefUnwindSafe for SourceRoundTripError
impl Send for SourceRoundTripError
impl Sync for SourceRoundTripError
impl Unpin for SourceRoundTripError
impl UnsafeUnpin for SourceRoundTripError
impl !UnwindSafe for SourceRoundTripError
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