[][src]Enum ep_capstone::arch::InsnId

pub enum InsnId {
    X86(InsnId),
}

A generic instruction ID that can be compared to any architecture specific instruction ID. Unlike InsnGroup and Reg, this generic instruction ID can only be equal to one instruction ID from one architecture.

Variants

X86(InsnId)

Trait Implementations

impl Clone for InsnId[src]

impl Copy for InsnId[src]

impl Eq for InsnId[src]

impl From<InsnId> for InsnId[src]

impl Hash for InsnId[src]

impl Ord for InsnId[src]

impl PartialEq<InsnId> for InsnId[src]

impl PartialEq<InsnId> for InsnId[src]

impl PartialOrd<InsnId> for InsnId[src]

impl StructuralEq for InsnId[src]

impl StructuralPartialEq for InsnId[src]

Auto Trait Implementations

impl RefUnwindSafe for InsnId

impl Send for InsnId

impl Sync for InsnId

impl Unpin for InsnId

impl UnwindSafe for InsnId

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.