Trait mc_sgx_trts::EnclaveMemory
source · pub trait EnclaveMemory<T> {
// Required methods
fn is_within_enclave(&self) -> bool;
fn is_outside_enclave(&self) -> bool;
}
Expand description
Behavior for determining where memory values are at.
Required Methods§
sourcefn is_within_enclave(&self) -> bool
fn is_within_enclave(&self) -> bool
Is the item fully within the enclave’s memory space?
sourcefn is_outside_enclave(&self) -> bool
fn is_outside_enclave(&self) -> bool
Is the item fully outside of the enclave’s memory space?