Enum vex_sys::IRJumpKind[][src]

#[repr(u32)]pub enum IRJumpKind {
    Ijk_INVALID,
    Ijk_Boring,
    Ijk_Call,
    Ijk_Ret,
    Ijk_ClientReq,
    Ijk_Yield,
    Ijk_EmWarn,
    Ijk_EmFail,
    Ijk_NoDecode,
    Ijk_MapFail,
    Ijk_InvalICache,
    Ijk_FlushDCache,
    Ijk_NoRedir,
    Ijk_SigILL,
    Ijk_SigTRAP,
    Ijk_SigSEGV,
    Ijk_SigBUS,
    Ijk_SigFPE,
    Ijk_SigFPE_IntDiv,
    Ijk_SigFPE_IntOvf,
    Ijk_Sys_syscall,
    Ijk_Sys_int32,
    Ijk_Sys_int128,
    Ijk_Sys_int129,
    Ijk_Sys_int130,
    Ijk_Sys_int145,
    Ijk_Sys_int210,
    Ijk_Sys_sysenter,
}

Variants

Ijk_INVALID
Ijk_Boring
Ijk_Call
Ijk_Ret
Ijk_ClientReq
Ijk_Yield
Ijk_EmWarn
Ijk_EmFail
Ijk_NoDecode
Ijk_MapFail
Ijk_InvalICache
Ijk_FlushDCache
Ijk_NoRedir
Ijk_SigILL
Ijk_SigTRAP
Ijk_SigSEGV
Ijk_SigBUS
Ijk_SigFPE
Ijk_SigFPE_IntDiv
Ijk_SigFPE_IntOvf
Ijk_Sys_syscall
Ijk_Sys_int32
Ijk_Sys_int128
Ijk_Sys_int129
Ijk_Sys_int130
Ijk_Sys_int145
Ijk_Sys_int210
Ijk_Sys_sysenter

Trait Implementations

impl Clone for IRJumpKind[src]

impl Copy for IRJumpKind[src]

impl Debug for IRJumpKind[src]

impl Eq for IRJumpKind[src]

impl Hash for IRJumpKind[src]

impl PartialEq<IRJumpKind> for IRJumpKind[src]

impl StructuralEq for IRJumpKind[src]

impl StructuralPartialEq for IRJumpKind[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.