pub enum EmulationStopReason {
Completed,
Timeout,
Breakpoint,
}
Expand description
Represents emulator stop reason
Variants§
Completed
Requested frames count have been emulated successfully
Timeout
Emulation time limit has been reached
Breakpoint
Emulator has reached breakpoint address
Trait Implementations§
Source§impl Clone for EmulationStopReason
impl Clone for EmulationStopReason
Source§fn clone(&self) -> EmulationStopReason
fn clone(&self) -> EmulationStopReason
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl PartialEq for EmulationStopReason
impl PartialEq for EmulationStopReason
impl Copy for EmulationStopReason
impl Eq for EmulationStopReason
impl StructuralPartialEq for EmulationStopReason
Auto Trait Implementations§
impl Freeze for EmulationStopReason
impl RefUnwindSafe for EmulationStopReason
impl Send for EmulationStopReason
impl Sync for EmulationStopReason
impl Unpin for EmulationStopReason
impl UnwindSafe for EmulationStopReason
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