pub struct RomAnalyzerError { /* private fields */ }Implementations§
Trait Implementations§
Source§impl Debug for RomAnalyzerError
impl Debug for RomAnalyzerError
Source§impl Display for RomAnalyzerError
impl Display for RomAnalyzerError
Source§impl Error for RomAnalyzerError
impl Error for RomAnalyzerError
Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
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
Source§impl From<Error> for RomAnalyzerError
Converts a std::io::Error into a RomAnalyzerError.
impl From<Error> for RomAnalyzerError
Converts a std::io::Error into a RomAnalyzerError.
Source§fn from(err: Error) -> RomAnalyzerError
fn from(err: Error) -> RomAnalyzerError
Converts to this type from the input type.
Source§impl From<ZipError> for RomAnalyzerError
Converts a zip::result::ZipError into a RomAnalyzerError.
impl From<ZipError> for RomAnalyzerError
Converts a zip::result::ZipError into a RomAnalyzerError.
Source§fn from(err: ZipError) -> RomAnalyzerError
fn from(err: ZipError) -> RomAnalyzerError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RomAnalyzerError
impl RefUnwindSafe for RomAnalyzerError
impl Send for RomAnalyzerError
impl Sync for RomAnalyzerError
impl Unpin for RomAnalyzerError
impl UnwindSafe for RomAnalyzerError
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