Trait sgxs::loader::MappingInfo[][src]

pub trait MappingInfo: 'static + Debug {
    fn address(&self) -> *mut c_void;
fn size(&self) -> usize; }
Expand description

An enclave that’s been loaded into memory.

Required methods

The base address of the enclave.

The size of the enclave (ELRANGE).

Implementors