[][src]Struct sgx_types::metadata::metadata_t

#[repr(C, packed)]pub struct metadata_t {
    pub magic_num: u64,
    pub version: u64,
    pub size: u32,
    pub tcs_policy: u32,
    pub ssa_frame_size: u32,
    pub max_save_buffer_size: u32,
    pub desired_misc_select: u32,
    pub tcs_min_pool: u32,
    pub enclave_size: u64,
    pub attributes: sgx_attributes_t,
    pub enclave_css: enclave_css_t,
    pub dirs: [data_directory_t; 2],
    pub data: [u8; 18592],
}

Fields

magic_num: u64version: u64size: u32tcs_policy: u32ssa_frame_size: u32max_save_buffer_size: u32desired_misc_select: u32tcs_min_pool: u32enclave_size: u64attributes: sgx_attributes_tenclave_css: enclave_css_tdirs: [data_directory_t; 2]data: [u8; 18592]

Auto Trait Implementations

impl Send for metadata_t

impl Sync for metadata_t

impl Unpin for metadata_t

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.