Struct iced_x86::code_asm::AsmRegisterDr
source · [−]#[repr(transparent)]pub struct AsmRegisterDr { /* private fields */ }
Expand description
All debug registers.
This type is not part of the public API! It’s an implementation detail. The register identifiers, however, are part of the public API.
To use the registers, you must import everything from the module:
use iced_x86::code_asm::*;
or import them from this module:
use iced_x86::code_asm::registers::*;
or import only these registers:
use iced_x86::code_asm::registers::dr::*;
Trait Implementations
sourceimpl Clone for AsmRegisterDr
impl Clone for AsmRegisterDr
sourcefn clone(&self) -> AsmRegisterDr
fn clone(&self) -> AsmRegisterDr
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl CodeAsmMov<AsmRegister32, AsmRegisterDr> for CodeAssembler
impl CodeAsmMov<AsmRegister32, AsmRegisterDr> for CodeAssembler
fn mov(&mut self, op0: AsmRegister32, op1: AsmRegisterDr) -> Result<(), IcedError>
sourceimpl CodeAsmMov<AsmRegister64, AsmRegisterDr> for CodeAssembler
impl CodeAsmMov<AsmRegister64, AsmRegisterDr> for CodeAssembler
fn mov(&mut self, op0: AsmRegister64, op1: AsmRegisterDr) -> Result<(), IcedError>
sourceimpl CodeAsmMov<AsmRegisterDr, AsmRegister32> for CodeAssembler
impl CodeAsmMov<AsmRegisterDr, AsmRegister32> for CodeAssembler
fn mov(&mut self, op0: AsmRegisterDr, op1: AsmRegister32) -> Result<(), IcedError>
sourceimpl CodeAsmMov<AsmRegisterDr, AsmRegister64> for CodeAssembler
impl CodeAsmMov<AsmRegisterDr, AsmRegister64> for CodeAssembler
fn mov(&mut self, op0: AsmRegisterDr, op1: AsmRegister64) -> Result<(), IcedError>
sourceimpl Debug for AsmRegisterDr
impl Debug for AsmRegisterDr
sourceimpl From<AsmRegisterDr> for Register
impl From<AsmRegisterDr> for Register
sourcefn from(reg: AsmRegisterDr) -> Self
fn from(reg: AsmRegisterDr) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<AsmRegisterDr> for AsmRegisterDr
impl PartialEq<AsmRegisterDr> for AsmRegisterDr
sourcefn eq(&self, other: &AsmRegisterDr) -> bool
fn eq(&self, other: &AsmRegisterDr) -> bool
impl Copy for AsmRegisterDr
impl Eq for AsmRegisterDr
impl StructuralEq for AsmRegisterDr
impl StructuralPartialEq for AsmRegisterDr
Auto Trait Implementations
impl RefUnwindSafe for AsmRegisterDr
impl Send for AsmRegisterDr
impl Sync for AsmRegisterDr
impl Unpin for AsmRegisterDr
impl UnwindSafe for AsmRegisterDr
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more