#[repr(C)]pub struct _ENCLAVE_INIT_INFO_VBS_BASIC {
pub FamilyId: [BYTE; 16],
pub ImageId: [BYTE; 16],
pub EnclaveSize: ULONGLONG,
pub EnclaveSvn: DWORD,
pub Reserved: DWORD,
pub __bindgen_anon_1: _ENCLAVE_INIT_INFO_VBS_BASIC__bindgen_ty_1,
}Fields§
§FamilyId: [BYTE; 16]§ImageId: [BYTE; 16]§EnclaveSize: ULONGLONG§EnclaveSvn: DWORD§Reserved: DWORD§__bindgen_anon_1: _ENCLAVE_INIT_INFO_VBS_BASIC__bindgen_ty_1Trait Implementations§
Source§impl Clone for _ENCLAVE_INIT_INFO_VBS_BASIC
impl Clone for _ENCLAVE_INIT_INFO_VBS_BASIC
Source§fn clone(&self) -> _ENCLAVE_INIT_INFO_VBS_BASIC
fn clone(&self) -> _ENCLAVE_INIT_INFO_VBS_BASIC
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for _ENCLAVE_INIT_INFO_VBS_BASIC
Auto Trait Implementations§
impl Freeze for _ENCLAVE_INIT_INFO_VBS_BASIC
impl RefUnwindSafe for _ENCLAVE_INIT_INFO_VBS_BASIC
impl !Send for _ENCLAVE_INIT_INFO_VBS_BASIC
impl !Sync for _ENCLAVE_INIT_INFO_VBS_BASIC
impl Unpin for _ENCLAVE_INIT_INFO_VBS_BASIC
impl UnsafeUnpin for _ENCLAVE_INIT_INFO_VBS_BASIC
impl UnwindSafe for _ENCLAVE_INIT_INFO_VBS_BASIC
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more