Trait capstone::arch::DetailsArchInsn [] [src]

pub trait DetailsArchInsn: PartialEq + Debug {
    type Operand: Into<ArchOperand> + Default + Clone + Debug + PartialEq;
    type OperandIterator: Iterator<Item = Self::Operand>;
    fn operands(&self) -> Self::OperandIterator;
}

Provides architecture-specific details about an instruction

Associated Types

Required Methods

Implementors