pub enum M68kError<BusError> {
Halted,
Exception(Exceptions),
Interrupt(u8),
Breakpoint,
InvalidTarget(Target),
BusError(BusError),
Other(String),
}
Variants§
Halted
Exception(Exceptions)
Interrupt(u8)
Breakpoint
InvalidTarget(Target)
BusError(BusError)
Other(String)
Trait Implementations§
source§impl<BusError> Error for M68kError<BusError>
impl<BusError> Error for M68kError<BusError>
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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()
Auto Trait Implementations§
impl<BusError> Freeze for M68kError<BusError>where
BusError: Freeze,
impl<BusError> RefUnwindSafe for M68kError<BusError>where
BusError: RefUnwindSafe,
impl<BusError> Send for M68kError<BusError>where
BusError: Send,
impl<BusError> Sync for M68kError<BusError>where
BusError: Sync,
impl<BusError> Unpin for M68kError<BusError>where
BusError: Unpin,
impl<BusError> UnwindSafe for M68kError<BusError>where
BusError: UnwindSafe,
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
source§impl<T, S> IntoAddress<T> for Swhere
T: FromAddress<S>,
impl<T, S> IntoAddress<T> for Swhere
T: FromAddress<S>,
source§fn into_address(self) -> T
fn into_address(self) -> T
Translate the given address into an address of type
T