pub struct InstructionOutcome {
pub opcode: Option<u8>,
pub mnemonic: String,
pub pc_before: u16,
pub pc_after: u16,
pub t_states: u8,
pub halted: bool,
pub interrupt_accepted: bool,
}Fields§
§opcode: Option<u8>§mnemonic: String§pc_before: u16§pc_after: u16§t_states: u8§halted: bool§interrupt_accepted: boolTrait Implementations§
Source§impl Clone for InstructionOutcome
impl Clone for InstructionOutcome
Source§fn clone(&self) -> InstructionOutcome
fn clone(&self) -> InstructionOutcome
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for InstructionOutcome
impl Debug for InstructionOutcome
impl Eq for InstructionOutcome
Source§impl PartialEq for InstructionOutcome
impl PartialEq for InstructionOutcome
impl StructuralPartialEq for InstructionOutcome
Auto Trait Implementations§
impl Freeze for InstructionOutcome
impl RefUnwindSafe for InstructionOutcome
impl Send for InstructionOutcome
impl Sync for InstructionOutcome
impl Unpin for InstructionOutcome
impl UnsafeUnpin for InstructionOutcome
impl UnwindSafe for InstructionOutcome
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