pub enum RequiredLibsError {
MissingTool(MissingToolError),
ReadElfFailed(Error),
InvalidUtf8(Utf8Error),
}
Variants§
Trait Implementations§
source§impl Debug for RequiredLibsError
impl Debug for RequiredLibsError
source§impl Display for RequiredLibsError
impl Display for RequiredLibsError
source§impl Error for RequiredLibsError
impl Error for RequiredLibsError
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<Error> for RequiredLibsError
impl From<Error> for RequiredLibsError
source§impl From<MissingToolError> for RequiredLibsError
impl From<MissingToolError> for RequiredLibsError
source§fn from(source: MissingToolError) -> Self
fn from(source: MissingToolError) -> Self
Converts to this type from the input type.
source§impl From<Utf8Error> for RequiredLibsError
impl From<Utf8Error> for RequiredLibsError
source§impl Reportable for RequiredLibsError
impl Reportable for RequiredLibsError
Auto Trait Implementations§
impl Freeze for RequiredLibsError
impl !RefUnwindSafe for RequiredLibsError
impl Send for RequiredLibsError
impl Sync for RequiredLibsError
impl Unpin for RequiredLibsError
impl !UnwindSafe for RequiredLibsError
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