Trait sgxs::loader::MappingInfo

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

An enclave that’s been loaded into memory.

Required Methods§

source

fn address(&self) -> *mut c_void

The base address of the enclave.

source

fn size(&self) -> usize

The size of the enclave (ELRANGE).

Implementors§