#[repr(C)]pub struct ZydisEncoderOperand__ZydisEncoderOperandReg_ {
pub value: ZydisRegister,
pub is4: ZyanBool,
}Expand description
Extended info for register-operands.
Fields§
§value: ZydisRegisterThe register value.
is4: ZyanBoolIs this 4th operand (VEX/XOP). Despite its name, is4 encoding can sometimes be
applied to 3rd operand instead of 4th. This field is used to resolve such ambiguities.
For all other operands it should be set to ZYAN_FALSE.
Trait Implementations§
Source§impl Clone for ZydisEncoderOperand__ZydisEncoderOperandReg_
impl Clone for ZydisEncoderOperand__ZydisEncoderOperandReg_
Source§fn clone(&self) -> ZydisEncoderOperand__ZydisEncoderOperandReg_
fn clone(&self) -> ZydisEncoderOperand__ZydisEncoderOperandReg_
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl PartialEq for ZydisEncoderOperand__ZydisEncoderOperandReg_
impl PartialEq for ZydisEncoderOperand__ZydisEncoderOperandReg_
Source§fn eq(&self, other: &ZydisEncoderOperand__ZydisEncoderOperandReg_) -> bool
fn eq(&self, other: &ZydisEncoderOperand__ZydisEncoderOperandReg_) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ZydisEncoderOperand__ZydisEncoderOperandReg_
impl Eq for ZydisEncoderOperand__ZydisEncoderOperandReg_
impl StructuralPartialEq for ZydisEncoderOperand__ZydisEncoderOperandReg_
Auto Trait Implementations§
impl Freeze for ZydisEncoderOperand__ZydisEncoderOperandReg_
impl RefUnwindSafe for ZydisEncoderOperand__ZydisEncoderOperandReg_
impl Send for ZydisEncoderOperand__ZydisEncoderOperandReg_
impl Sync for ZydisEncoderOperand__ZydisEncoderOperandReg_
impl Unpin for ZydisEncoderOperand__ZydisEncoderOperandReg_
impl UnwindSafe for ZydisEncoderOperand__ZydisEncoderOperandReg_
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