[][src]Struct sgx_trts::enclave::SgxThreadData

pub struct SgxThreadData { /* fields omitted */ }

Methods

impl SgxThreadData[src]

pub fn current() -> Self[src]

get thread_data per thread.

Note

This API is only an experimental funtion.

pub unsafe fn from_raw(raw: sgx_thread_t) -> Self[src]

pub fn td_base(&self) -> usize[src]

td_base is to get TD base address per thread.

Note

This API is only an experimental funtion.

pub fn stack_base(&self) -> usize[src]

stack_base is to get stack base address per thread.

Note

This API is only an experimental funtion.

pub fn stack_limit(&self) -> usize[src]

stack_limit is to get stack limit per thread.

Note

This API is only an experimental funtion.

pub fn tls_base(&self) -> usize[src]

tls_base is to get tls base address per thread.

Note

This API is only an experimental funtion.

pub fn last_error(&self) -> usize[src]

last_error is to get last error per thread.

Note

This API is only an experimental funtion.

pub fn exception_flag(&self) -> usize[src]

exception_flag is to get exception flag per thread.

Note

This API is only an experimental funtion.

pub fn get_tcs(&self) -> usize[src]

Trait Implementations

impl Clone for SgxThreadData[src]

impl Copy for SgxThreadData[src]

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