[][src]Struct ep_capstone::Mode

pub struct Mode { /* fields omitted */ }

Mode flags for configuring Capstone.

Implementations

impl Mode[src]

pub const LittleEndian: Mode[src]

little-endian mode (default mode)

pub const Arm: Mode[src]

32-bit ARM

pub const Bits16: Mode[src]

16-bit mode (X86)

pub const Bits32: Mode[src]

32-bit mode (X86)

pub const Bits64: Mode[src]

64-bit mode (X86, PPC)

pub const Thumb: Mode[src]

ARM's Thumb mode, including Thumb-2

pub const MClass: Mode[src]

ARM's Cortex-M series

pub const V8: Mode[src]

ARMv8 A32 encodings for ARM

pub const Micro: Mode[src]

MicroMips mode (MIPS)

pub const Mips3: Mode[src]

MIPS III ISA

pub const Mips32R6: Mode[src]

MIPS32R6 ISA

pub const Mips2: Mode[src]

Mips II ISA

pub const V9: Mode[src]

SparcV9 mode (Sparc)

pub const Qpx: Mode[src]

Quad Processing eXtensions mode (PPC)

pub const M68K000: Mode[src]

M68K 68000 mode

pub const M68K010: Mode[src]

M68K 68010 mode

pub const M68K020: Mode[src]

M68K 68020 mode

pub const M68K030: Mode[src]

M68K 68030 mode

pub const M68K040: Mode[src]

M68K 68040 mode

pub const M68K060: Mode[src]

M68K 68060 mode

pub const BigEndian: Mode[src]

big-endian mode

pub const Mips32: Mode[src]

MIPS32 ISA (Mips)

pub const Mips64: Mode[src]

MIPS64 ISA (Mips)

pub const M680X6301: Mode[src]

M680X Hitachi 6301,6303 mode

pub const M680X6309: Mode[src]

M680X Hitachi 6309 mode

pub const M680X6800: Mode[src]

M680X Motorola 6800,6802 mode

pub const M680X6801: Mode[src]

M680X Motorola 6801,6803 mode

pub const M680X6805: Mode[src]

M680X Motorola/Freescale 6805 mode

pub const M680X6808: Mode[src]

M680X Motorola/Freescale/NXP 68HC08 mode

pub const M680X6809: Mode[src]

M680X Motorola 6809 mode

pub const M680X6811: Mode[src]

M680X Motorola/Freescale/NXP 68HC11 mode

pub const M680XCPU12: Mode[src]

M680X Motorola/Freescale/NXP CPU12 used on M68HC12/HCS12

pub const M680XHCS08: Mode[src]

M680X Freescale/NXP HCS08 mode

pub const fn empty() -> Mode[src]

Returns an empty set of flags

pub const fn all() -> Mode[src]

Returns the set containing all flags.

pub const fn bits(&self) -> c_int[src]

Returns the raw value of the flags currently stored.

pub fn from_bits(bits: c_int) -> Option<Mode>[src]

Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.

pub const fn from_bits_truncate(bits: c_int) -> Mode[src]

Convert from underlying bit representation, dropping any bits that do not correspond to flags.

pub const unsafe fn from_bits_unchecked(bits: c_int) -> Mode[src]

Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).

pub const fn is_empty(&self) -> bool[src]

Returns true if no flags are currently stored.

pub const fn is_all(&self) -> bool[src]

Returns true if all flags are currently set.

pub const fn intersects(&self, other: Mode) -> bool[src]

Returns true if there are flags common to both self and other.

pub const fn contains(&self, other: Mode) -> bool[src]

Returns true all of the flags in other are contained within self.

pub fn insert(&mut self, other: Mode)[src]

Inserts the specified flags in-place.

pub fn remove(&mut self, other: Mode)[src]

Removes the specified flags in-place.

pub fn toggle(&mut self, other: Mode)[src]

Toggles the specified flags in-place.

pub fn set(&mut self, other: Mode, value: bool)[src]

Inserts or removes the specified flags depending on the passed value.

Trait Implementations

impl Binary for Mode[src]

impl BitAnd<Mode> for Mode[src]

type Output = Mode

The resulting type after applying the & operator.

fn bitand(self, other: Mode) -> Mode[src]

Returns the intersection between the two sets of flags.

impl BitAndAssign<Mode> for Mode[src]

fn bitand_assign(&mut self, other: Mode)[src]

Disables all flags disabled in the set.

impl BitOr<Mode> for Mode[src]

type Output = Mode

The resulting type after applying the | operator.

fn bitor(self, other: Mode) -> Mode[src]

Returns the union of the two sets of flags.

impl BitOrAssign<Mode> for Mode[src]

fn bitor_assign(&mut self, other: Mode)[src]

Adds the set of flags.

impl BitXor<Mode> for Mode[src]

type Output = Mode

The resulting type after applying the ^ operator.

fn bitxor(self, other: Mode) -> Mode[src]

Returns the left flags, but with all the right flags toggled.

impl BitXorAssign<Mode> for Mode[src]

fn bitxor_assign(&mut self, other: Mode)[src]

Toggles the set of flags.

impl Clone for Mode[src]

impl Copy for Mode[src]

impl Debug for Mode[src]

impl Eq for Mode[src]

impl Extend<Mode> for Mode[src]

impl FromIterator<Mode> for Mode[src]

impl Hash for Mode[src]

impl LowerHex for Mode[src]

impl Not for Mode[src]

type Output = Mode

The resulting type after applying the ! operator.

fn not(self) -> Mode[src]

Returns the complement of this set of flags.

impl Octal for Mode[src]

impl Ord for Mode[src]

impl PartialEq<Mode> for Mode[src]

impl PartialOrd<Mode> for Mode[src]

impl StructuralEq for Mode[src]

impl StructuralPartialEq for Mode[src]

impl Sub<Mode> for Mode[src]

type Output = Mode

The resulting type after applying the - operator.

fn sub(self, other: Mode) -> Mode[src]

Returns the set difference of the two sets of flags.

impl SubAssign<Mode> for Mode[src]

fn sub_assign(&mut self, other: Mode)[src]

Disables all flags enabled in the set.

impl UpperHex for Mode[src]

Auto Trait Implementations

impl RefUnwindSafe for Mode

impl Send for Mode

impl Sync for Mode

impl Unpin for Mode

impl UnwindSafe for Mode

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.