pub struct ClrInstruction {
pub opcode: ClrOpcode,
pub operand: Option<ClrInstructionOperand>,
pub offset: u32,
}Expand description
CLR 指令结构
Fields§
§opcode: ClrOpcode§operand: Option<ClrInstructionOperand>§offset: u32Trait Implementations§
Source§impl Clone for ClrInstruction
impl Clone for ClrInstruction
Source§fn clone(&self) -> ClrInstruction
fn clone(&self) -> ClrInstruction
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 ClrInstruction
impl Debug for ClrInstruction
Source§impl PartialEq for ClrInstruction
impl PartialEq for ClrInstruction
impl StructuralPartialEq for ClrInstruction
Auto Trait Implementations§
impl Freeze for ClrInstruction
impl RefUnwindSafe for ClrInstruction
impl Send for ClrInstruction
impl Sync for ClrInstruction
impl Unpin for ClrInstruction
impl UnsafeUnpin for ClrInstruction
impl UnwindSafe for ClrInstruction
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