[][src]Enum ep_capstone::SupportQuery

pub enum SupportQuery {
    Arch(Arch),
    AllArch,
    Diet,
    X86Reduce,
}

Support query that can be used along with supports to check the current Capstone build's capabilities.

Variants

Arch(Arch)

Support query for a specific architecture.

AllArch

Support query for all architectures known to capstone.

Diet

Support query for verifying that the current capstone engine is in diet mode.

X86Reduce

Support query for verifying that the current capstone engine is currently in X86 reduce mode.

Trait Implementations

impl Clone for SupportQuery[src]

impl Copy for SupportQuery[src]

impl Debug for SupportQuery[src]

impl Eq for SupportQuery[src]

impl From<Arch> for SupportQuery[src]

impl Hash for SupportQuery[src]

impl PartialEq<SupportQuery> for SupportQuery[src]

impl StructuralEq for SupportQuery[src]

impl StructuralPartialEq for SupportQuery[src]

Auto Trait Implementations

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.