[][src]Struct sgx_types::sgx_key_request_t

#[repr(C)]
pub struct sgx_key_request_t {
    pub key_name: uint16_t,
    pub key_policy: uint16_t,
    pub isv_svn: sgx_isv_svn_t,
    pub reserved1: uint16_t,
    pub cpu_svn: sgx_cpu_svn_t,
    pub attribute_mask: sgx_attributes_t,
    pub key_id: sgx_key_id_t,
    pub misc_mask: sgx_misc_select_t,
    pub config_svn: sgx_config_svn_t,
    pub reserved2: [uint8_t; 434],
}

Fields

key_name: uint16_tkey_policy: uint16_tisv_svn: sgx_isv_svn_treserved1: uint16_tcpu_svn: sgx_cpu_svn_tattribute_mask: sgx_attributes_tkey_id: sgx_key_id_tmisc_mask: sgx_misc_select_tconfig_svn: sgx_config_svn_treserved2: [uint8_t; 434]

Trait Implementations

impl Clone for sgx_key_request_t[src]

impl ContiguousMemory for sgx_key_request_t[src]

impl Copy for sgx_key_request_t[src]

impl Default for sgx_key_request_t[src]

Auto Trait Implementations

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.