pub enum VarBase {
Show 18 variants
RAX,
RBX,
RCX,
RDX,
RSI,
RDI,
RSP,
RBP,
R8,
R9,
R10,
R11,
R12,
R13,
R14,
R15,
RFlags,
Temp(u32),
}Expand description
Base register or temporary variable.
Variants§
Trait Implementations§
impl Copy for VarBase
impl Eq for VarBase
impl StructuralPartialEq for VarBase
Auto Trait Implementations§
impl Freeze for VarBase
impl RefUnwindSafe for VarBase
impl Send for VarBase
impl Sync for VarBase
impl Unpin for VarBase
impl UnsafeUnpin for VarBase
impl UnwindSafe for VarBase
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