Enum capstone::arch::ArchOperand [] [src]

pub enum ArchOperand {
    ArmOperand(ArmOperand),
    Arm64Operand(Arm64Operand),
    MipsOperand(MipsOperand),
    PpcOperand(PpcOperand),
    SparcOperand(SparcOperand),
    X86Operand(X86Operand),
    XcoreOperand(XcoreOperand),
}

Architecture-independent enum of operands

Variants

Trait Implementations

impl Clone for ArchOperand
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ArchOperand
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for ArchOperand
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl From<ArmOperand> for ArchOperand
[src]

[src]

Performs the conversion.

impl From<Arm64Operand> for ArchOperand
[src]

[src]

Performs the conversion.

impl From<MipsOperand> for ArchOperand
[src]

[src]

Performs the conversion.

impl From<PpcOperand> for ArchOperand
[src]

[src]

Performs the conversion.

impl From<SparcOperand> for ArchOperand
[src]

[src]

Performs the conversion.

impl From<X86Operand> for ArchOperand
[src]

[src]

Performs the conversion.

impl From<XcoreOperand> for ArchOperand
[src]

[src]

Performs the conversion.

Auto Trait Implementations

impl Send for ArchOperand

impl Sync for ArchOperand