#[repr(C)]pub struct IMPORT_OBJECT_HEADER {
pub Sig1: WORD,
pub Sig2: WORD,
pub Version: WORD,
pub Machine: WORD,
pub TimeDateStamp: DWORD,
pub SizeOfData: DWORD,
pub __bindgen_anon_1: IMPORT_OBJECT_HEADER__bindgen_ty_1,
pub _bitfield_align_1: [u16; 0],
pub _bitfield_1: __BindgenBitfieldUnit<[u8; 2]>,
}
Fields§
§Sig1: WORD
§Sig2: WORD
§Version: WORD
§Machine: WORD
§TimeDateStamp: DWORD
§SizeOfData: DWORD
§__bindgen_anon_1: IMPORT_OBJECT_HEADER__bindgen_ty_1
§_bitfield_align_1: [u16; 0]
§_bitfield_1: __BindgenBitfieldUnit<[u8; 2]>
Implementations§
Source§impl IMPORT_OBJECT_HEADER
impl IMPORT_OBJECT_HEADER
pub fn Type(&self) -> WORD
pub fn set_Type(&mut self, val: WORD)
pub unsafe fn Type_raw(this: *const Self) -> WORD
pub unsafe fn set_Type_raw(this: *mut Self, val: WORD)
pub fn NameType(&self) -> WORD
pub fn set_NameType(&mut self, val: WORD)
pub unsafe fn NameType_raw(this: *const Self) -> WORD
pub unsafe fn set_NameType_raw(this: *mut Self, val: WORD)
pub fn Reserved(&self) -> WORD
pub fn set_Reserved(&mut self, val: WORD)
pub unsafe fn Reserved_raw(this: *const Self) -> WORD
pub unsafe fn set_Reserved_raw(this: *mut Self, val: WORD)
pub fn new_bitfield_1( Type: WORD, NameType: WORD, Reserved: WORD, ) -> __BindgenBitfieldUnit<[u8; 2]>
Trait Implementations§
Source§impl Clone for IMPORT_OBJECT_HEADER
impl Clone for IMPORT_OBJECT_HEADER
Source§fn clone(&self) -> IMPORT_OBJECT_HEADER
fn clone(&self) -> IMPORT_OBJECT_HEADER
Returns a copy 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 IMPORT_OBJECT_HEADER
Auto Trait Implementations§
impl Freeze for IMPORT_OBJECT_HEADER
impl RefUnwindSafe for IMPORT_OBJECT_HEADER
impl Send for IMPORT_OBJECT_HEADER
impl Sync for IMPORT_OBJECT_HEADER
impl Unpin for IMPORT_OBJECT_HEADER
impl UnwindSafe for IMPORT_OBJECT_HEADER
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