Struct iced_x86::code_asm::AsmRegisterTr
source · [−]#[repr(transparent)]pub struct AsmRegisterTr { /* private fields */ }
Expand description
All test 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::tr::*;
Trait Implementations
sourceimpl Clone for AsmRegisterTr
impl Clone for AsmRegisterTr
sourcefn clone(&self) -> AsmRegisterTr
fn clone(&self) -> AsmRegisterTr
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, AsmRegisterTr> for CodeAssembler
impl CodeAsmMov<AsmRegister32, AsmRegisterTr> for CodeAssembler
fn mov(&mut self, op0: AsmRegister32, op1: AsmRegisterTr) -> Result<(), IcedError>
sourceimpl CodeAsmMov<AsmRegisterTr, AsmRegister32> for CodeAssembler
impl CodeAsmMov<AsmRegisterTr, AsmRegister32> for CodeAssembler
fn mov(&mut self, op0: AsmRegisterTr, op1: AsmRegister32) -> Result<(), IcedError>
sourceimpl Debug for AsmRegisterTr
impl Debug for AsmRegisterTr
sourceimpl From<AsmRegisterTr> for Register
impl From<AsmRegisterTr> for Register
sourcefn from(reg: AsmRegisterTr) -> Self
fn from(reg: AsmRegisterTr) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<AsmRegisterTr> for AsmRegisterTr
impl PartialEq<AsmRegisterTr> for AsmRegisterTr
sourcefn eq(&self, other: &AsmRegisterTr) -> bool
fn eq(&self, other: &AsmRegisterTr) -> bool
impl Copy for AsmRegisterTr
impl Eq for AsmRegisterTr
impl StructuralEq for AsmRegisterTr
impl StructuralPartialEq for AsmRegisterTr
Auto Trait Implementations
impl RefUnwindSafe for AsmRegisterTr
impl Send for AsmRegisterTr
impl Sync for AsmRegisterTr
impl Unpin for AsmRegisterTr
impl UnwindSafe for AsmRegisterTr
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