pub struct InstructionData {
pub opcode: u32,
pub compact: bool,
pub parallel: bool,
pub p_bit: bool,
pub conditional_operation: Option<ConditionalOperation>,
}Fields§
§opcode: u32§compact: bool§parallel: bool§p_bit: boolDetermines if the next instruction will be executed in parallel
conditional_operation: Option<ConditionalOperation>Trait Implementations§
Source§impl Clone for InstructionData
impl Clone for InstructionData
Source§fn clone(&self) -> InstructionData
fn clone(&self) -> InstructionData
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for InstructionData
impl RefUnwindSafe for InstructionData
impl Send for InstructionData
impl Sync for InstructionData
impl Unpin for InstructionData
impl UnsafeUnpin for InstructionData
impl UnwindSafe for InstructionData
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