pub enum EhFrameError {
Gimli(Error),
}Expand description
Errors specific to .eh_frame parsing.
Variants§
Trait Implementations§
Source§impl Debug for EhFrameError
impl Debug for EhFrameError
Source§impl Display for EhFrameError
impl Display for EhFrameError
Source§impl Error for EhFrameError
impl Error for EhFrameError
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()
Source§impl From<EhFrameError> for Error
impl From<EhFrameError> for Error
Source§fn from(source: EhFrameError) -> Self
fn from(source: EhFrameError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for EhFrameError
impl RefUnwindSafe for EhFrameError
impl Send for EhFrameError
impl Sync for EhFrameError
impl Unpin for EhFrameError
impl UnsafeUnpin for EhFrameError
impl UnwindSafe for EhFrameError
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