[][src]Struct enclave_runner::EnclaveBuilder

pub struct EnclaveBuilder<'a> { /* fields omitted */ }

Methods

impl<'a> EnclaveBuilder<'a>
[src]

pub fn new(enclave_path: &'a Path) -> EnclaveBuilder<'a>
[src]

pub fn new_from_memory(enclave_data: &'a [u8]) -> EnclaveBuilder<'a>
[src]

pub fn dummy_signature(&mut self) -> &mut Self
[src]

pub fn coresident_signature(&mut self) -> IoResult<&mut Self>
[src]

pub fn signature<P: AsRef<Path>>(&mut self, path: P) -> IoResult<&mut Self>
[src]

pub fn sigstruct(&mut self, sigstruct: Sigstruct) -> &mut Self
[src]

pub fn attributes(&mut self, attributes: Attributes) -> &mut Self
[src]

pub fn miscselect(&mut self, miscselect: Miscselect) -> &mut Self
[src]

pub fn build<T: Load>(self, loader: &mut T) -> Result<Command, Error>
[src]

pub fn build_library<T: Load>(self, loader: &mut T) -> Result<Library, Error>
[src]

Auto Trait Implementations

impl<'a> Send for EnclaveBuilder<'a>

impl<'a> Sync for EnclaveBuilder<'a>

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]