Enum capstone::CapstoneError
[−]
[src]
pub enum CapstoneError {
OutOfMemory,
UnsupportedArch,
InvalidHandle,
InvalidCsh,
InvalidMode,
InvalidOption,
DetailOff,
UninitializedMemSetup,
UnsupportedVersion,
IrrelevantDataInDiet,
IrrelevantDataInSkipData,
UnsupportedX86Att,
UnsupportedX86Intel,
}Error for Capstone
Variants
OutOfMemoryOut-Of-Memory error: cs_open(), cs_disasm(), cs_disasm_iter()
UnsupportedArchUnsupported Architecture: cs_open()
InvalidHandleInvalid Handle: cs_op_count(), cs_op_index()
InvalidCshInvalid InvalidCsh argument: cs_close(), cs_errno(), cs_option()
InvalidModeInvalid/unsupported mode: cs_open()
InvalidOptionInvalid/unsupported option: cs_option()
DetailOffInformation is unavailable because detail option is OFF
UninitializedMemSetupDynamic Memory management uninitialized (see CS_OPT_MEM)
UnsupportedVersionUnsupported Version (bindings)
IrrelevantDataInDietAccess irrelevant data in "diet" engine
IrrelevantDataInSkipDataAccess irrelevant data for "data" instruction in SKIPDATA Mode
UnsupportedX86AttX86 AT&T syntax is unsupported (opt-out at compile time)
UnsupportedX86IntelX86 Intel syntax is unsupported (opt-out at compile time)
Trait Implementations
impl Copy for CapstoneError[src]
impl Clone for CapstoneError[src]
fn clone(&self) -> CapstoneError[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Debug for CapstoneError[src]
impl Eq for CapstoneError[src]
impl Hash for CapstoneError[src]
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)[src]
Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher]. Read more