pub struct MemOp {
pub na: bool,
pub load: bool,
pub store: bool,
pub prefetch: bool,
pub exec: bool,
}
Expand description
Type of opcode.
Fields§
§na: bool
Not available.
load: bool
Load instruction.
store: bool
Store instruction.
prefetch: bool
Prefetch.
exec: bool
Code execution.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MemOp
impl RefUnwindSafe for MemOp
impl Send for MemOp
impl Sync for MemOp
impl Unpin for MemOp
impl UnwindSafe for MemOp
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