#[repr(u8)]pub enum Reg64 {
Show 16 variants
rax = 0,
rcx = 1,
rdx = 2,
rbx = 3,
rsp = 4,
rbp = 5,
rsi = 6,
rdi = 7,
r8 = 8,
r9 = 9,
r10 = 10,
r11 = 11,
r12 = 12,
r13 = 13,
r14 = 14,
r15 = 15,
}
Expand description
Definition of 64 bit registers.
Variants§
rax = 0
rcx = 1
rdx = 2
rbx = 3
rsp = 4
rbp = 5
rsi = 6
rdi = 7
r8 = 8
r9 = 9
r10 = 10
r11 = 11
r12 = 12
r13 = 13
r14 = 14
r15 = 15
Trait Implementations§
impl Copy for Reg64
Auto Trait Implementations§
impl Freeze for Reg64
impl RefUnwindSafe for Reg64
impl Send for Reg64
impl Sync for Reg64
impl Unpin for Reg64
impl UnwindSafe for Reg64
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