Enum capstone::CapstoneError [] [src]

pub enum CapstoneError {
    OutOfMemory,
    UnsupportedArch,
    InvalidHandle,
    InvalidCsh,
    InvalidMode,
    InvalidOption,
    DetailOff,
    UninitializedMemSetup,
    UnsupportedVersion,
    IrrelevantDataInDiet,
    IrrelevantDataInSkipData,
    UnsupportedX86Att,
    UnsupportedX86Intel,
}

Variants

Out-Of-Memory error: cs_open(), cs_disasm(), cs_disasm_iter()

Unsupported Architecture: cs_open()

Invalid Handle: cs_op_count(), cs_op_index()

Invalid InvalidCsh argument: cs_close(), cs_errno(), cs_option()

Invalid/unsupported mode: cs_open()

Invalid/unsupported option: cs_option()

Information is unavailable because detail option is OFF

Dynamic Memory management uninitialized (see CS_OPT_MEM)

Unsupported Version (bindings)

Access irrelevant data in "diet" engine

Access irrelevant data for "data" instruction in SKIPDATA Mode

X86 AT&T syntax is unsupported (opt-out at compile time)

X86 Intel syntax is unsupported (opt-out at compile time)

Trait Implementations

impl Copy for CapstoneError
[src]

impl Clone for CapstoneError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for CapstoneError
[src]

[src]

Formats the value using the given formatter.

impl Eq for CapstoneError
[src]

impl Hash for CapstoneError
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl PartialEq for CapstoneError
[src]

[src]

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

1.0.0
[src]

This method tests for !=.