Enum juicebox_asm::MemOp
source · pub enum MemOp {
Indirect(Reg64),
IndirectDisp(Reg64, i32),
}
Expand description
Type representing a memory operand.
Variants§
Indirect(Reg64)
An indirect memory operand, eg mov [rax], rcx
.
IndirectDisp(Reg64, i32)
An indirect memory operand with additional displacement, eg mov [rax + 0x10], rcx
.
Trait Implementations§
Auto Trait Implementations§
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