pub enum Rd {
EAX = 0,
ECX = 1,
EDX = 2,
EBX = 3,
ESP = 4,
EBP = 5,
ESI = 6,
EDI = 7,
}Expand description
1, 2 or 4-byte general purpose “double-word” registers.
EIP does not appear here as it cannot be addressed dynamically.
Variants§
Trait Implementations§
impl Copy for Rd
impl Eq for Rd
impl StructuralPartialEq for Rd
Auto Trait Implementations§
impl Freeze for Rd
impl RefUnwindSafe for Rd
impl Send for Rd
impl Sync for Rd
impl Unpin for Rd
impl UnsafeUnpin for Rd
impl UnwindSafe for Rd
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