pub struct DecodedOperand {
pub operand: Operand,
pub actions: OperandActions,
}Expand description
information about a decoded operand.
Fields§
§operand: Operandthe actual operand.
actions: OperandActionsthe actions performed on the operand by the instruction.
Trait Implementations§
Source§impl Clone for DecodedOperand
impl Clone for DecodedOperand
Source§fn clone(&self) -> DecodedOperand
fn clone(&self) -> DecodedOperand
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 Debug for DecodedOperand
impl Debug for DecodedOperand
Source§impl Hash for DecodedOperand
impl Hash for DecodedOperand
Source§impl PartialEq for DecodedOperand
impl PartialEq for DecodedOperand
impl Eq for DecodedOperand
impl StructuralPartialEq for DecodedOperand
Auto Trait Implementations§
impl Freeze for DecodedOperand
impl RefUnwindSafe for DecodedOperand
impl Send for DecodedOperand
impl Sync for DecodedOperand
impl Unpin for DecodedOperand
impl UnwindSafe for DecodedOperand
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