[][src]Enum xhypervisor::x86Reg

#[repr(C)]
pub enum x86Reg {
    RIP,
    RFLAGS,
    RAX,
    RCX,
    RDX,
    RBX,
    RSI,
    RDI,
    RSP,
    RBP,
    R8,
    R9,
    R10,
    R11,
    R12,
    R13,
    R14,
    R15,
    CS,
    SS,
    DS,
    ES,
    FS,
    GS,
    IDT_BASE,
    IDT_LIMIT,
    GDT_BASE,
    GDT_LIMIT,
    LDTR,
    LDT_BASE,
    LDT_LIMIT,
    LDT_AR,
    TR,
    TSS_BASE,
    TSS_LIMIT,
    TSS_AR,
    CR0,
    CR1,
    CR2,
    CR3,
    CR4,
    DR0,
    DR1,
    DR2,
    DR3,
    DR4,
    DR5,
    DR6,
    DR7,
    TPR,
    XCR0,
    REGISTERS_MAX,
}

x86 architectural register

Variants

RIP
RFLAGS
RAX
RCX
RDX
RBX
RSI
RDI
RSP
RBP
R8
R9
R10
R11
R12
R13
R14
R15
CS
SS
DS
ES
FS
GS
IDT_BASE
IDT_LIMIT
GDT_BASE
GDT_LIMIT
LDTR
LDT_BASE
LDT_LIMIT
LDT_AR
TR
TSS_BASE
TSS_LIMIT
TSS_AR
CR0
CR1
CR2
CR3
CR4
DR0
DR1
DR2
DR3
DR4
DR5
DR6
DR7
TPR
XCR0
REGISTERS_MAX

Trait Implementations

impl Clone for x86Reg[src]

Auto Trait Implementations

impl RefUnwindSafe for x86Reg

impl Send for x86Reg

impl Sync for x86Reg

impl Unpin for x86Reg

impl UnwindSafe for x86Reg

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.