pub enum MapleError {
InvalidPEFormat(String),
MemoryAllocation(String),
ImportResolution(String),
RelocationFailed(String),
SymbolNotFound(String),
ExecutionFailed(String),
PlatformNotSupported(String),
Io(Error),
}
Variants§
InvalidPEFormat(String)
MemoryAllocation(String)
ImportResolution(String)
RelocationFailed(String)
SymbolNotFound(String)
ExecutionFailed(String)
PlatformNotSupported(String)
Io(Error)
Trait Implementations§
Source§impl Debug for MapleError
impl Debug for MapleError
Source§impl Display for MapleError
impl Display for MapleError
Source§impl Error for MapleError
impl Error for MapleError
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 MapleError
impl From<Error> for MapleError
Source§impl PartialEq for MapleError
impl PartialEq for MapleError
Auto Trait Implementations§
impl Freeze for MapleError
impl !RefUnwindSafe for MapleError
impl Send for MapleError
impl Sync for MapleError
impl Unpin for MapleError
impl !UnwindSafe for MapleError
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