pub struct EvmInsnDetail<'a>(/* private fields */);Expand description
Contains EVM-specific details for an instruction
Implementations§
Source§impl EvmInsnDetail<'_>
impl EvmInsnDetail<'_>
Sourcepub fn popped_items(&self) -> u8
pub fn popped_items(&self) -> u8
Number of items popped from the stack
Sourcepub fn pushed_items(&self) -> u8
pub fn pushed_items(&self) -> u8
Number of items pushed into the stack
Trait Implementations§
Source§impl Debug for EvmInsnDetail<'_>
impl Debug for EvmInsnDetail<'_>
Source§impl DetailsArchInsn for EvmInsnDetail<'_>
impl DetailsArchInsn for EvmInsnDetail<'_>
type OperandIterator = EvmOperandIterator
type Operand = EvmOperand
fn operands(&self) -> EvmOperandIterator ⓘ
Source§impl<'a> PartialEq for EvmInsnDetail<'a>
impl<'a> PartialEq for EvmInsnDetail<'a>
Auto Trait Implementations§
impl<'a> Freeze for EvmInsnDetail<'a>
impl<'a> RefUnwindSafe for EvmInsnDetail<'a>
impl<'a> Send for EvmInsnDetail<'a>
impl<'a> Sync for EvmInsnDetail<'a>
impl<'a> Unpin for EvmInsnDetail<'a>
impl<'a> UnwindSafe for EvmInsnDetail<'a>
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