pub enum TickState {
Executed,
Jumped,
Skipped,
Error,
}
Expand description
The result of a processor tick.
Variants§
Executed
Operation normally executed,
Jumped
The last operation was a jump in memory,
Skipped
The last operation was skip accordingly to the CpuState,
Error
The last operation resulted in an error.
Trait Implementations§
impl Copy for TickState
impl Eq for TickState
impl StructuralPartialEq for TickState
Auto Trait Implementations§
impl Freeze for TickState
impl RefUnwindSafe for TickState
impl Send for TickState
impl Sync for TickState
impl Unpin for TickState
impl UnwindSafe for TickState
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