Trait sgxs::loader::Tcs

source ·
pub trait Tcs: 'static + Debug + Send {
    // Required method
    fn address(&self) -> *mut c_void;
}
Expand description

An owned Tcs is the only reference to a particular Thread Control Structure (TCS) in an enclave.

Required Methods§

source

fn address(&self) -> *mut c_void

The address of the TCS.

Implementors§