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?