[][src]Struct sgx_types::sgx_cpu_context_t

#[repr(C)]pub struct sgx_cpu_context_t {
    pub rax: uint64_t,
    pub rcx: uint64_t,
    pub rdx: uint64_t,
    pub rbx: uint64_t,
    pub rsp: uint64_t,
    pub rbp: uint64_t,
    pub rsi: uint64_t,
    pub rdi: uint64_t,
    pub r8: uint64_t,
    pub r9: uint64_t,
    pub r10: uint64_t,
    pub r11: uint64_t,
    pub r12: uint64_t,
    pub r13: uint64_t,
    pub r14: uint64_t,
    pub r15: uint64_t,
    pub rflags: uint64_t,
    pub rip: uint64_t,
}

Fields

rax: uint64_trcx: uint64_trdx: uint64_trbx: uint64_trsp: uint64_trbp: uint64_trsi: uint64_trdi: uint64_tr8: uint64_tr9: uint64_tr10: uint64_tr11: uint64_tr12: uint64_tr13: uint64_tr14: uint64_tr15: uint64_trflags: uint64_trip: uint64_t

Trait Implementations

impl Clone for sgx_cpu_context_t[src]

impl ContiguousMemory for sgx_cpu_context_t[src]

impl Copy for sgx_cpu_context_t[src]

impl Default for sgx_cpu_context_t[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, 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.