pub trait EnclaveRange {
    fn is_enclave_range(&self) -> bool;
    fn is_host_range(&self) -> bool;
}

Required Methods

Implementations on Foreign Types

Implementors