Struct object::pe::ImageEnclaveImport
source · [−]#[repr(C)]pub struct ImageEnclaveImport {
pub match_type: U32<LE>,
pub minimum_security_version: U32<LE>,
pub unique_or_author_id: [u8; 32],
pub family_id: [u8; 16],
pub image_id: [u8; 16],
pub import_name: U32<LE>,
pub reserved: U32<LE>,
}
Fields
match_type: U32<LE>
minimum_security_version: U32<LE>
family_id: [u8; 16]
image_id: [u8; 16]
import_name: U32<LE>
reserved: U32<LE>
Trait Implementations
sourceimpl Clone for ImageEnclaveImport
impl Clone for ImageEnclaveImport
sourcefn clone(&self) -> ImageEnclaveImport
fn clone(&self) -> ImageEnclaveImport
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ImageEnclaveImport
impl Debug for ImageEnclaveImport
impl Copy for ImageEnclaveImport
impl Pod for ImageEnclaveImport
Auto Trait Implementations
impl RefUnwindSafe for ImageEnclaveImport
impl Send for ImageEnclaveImport
impl Sync for ImageEnclaveImport
impl Unpin for ImageEnclaveImport
impl UnwindSafe for ImageEnclaveImport
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more