#[repr(C)]pub struct WIN32_MEMORY_REGION_INFORMATION__bindgen_ty_1__bindgen_ty_1 {
pub _bitfield_align_1: [u32; 0],
pub _bitfield_1: __BindgenBitfieldUnit<[u8; 4]>,
}Fields§
§_bitfield_align_1: [u32; 0]§_bitfield_1: __BindgenBitfieldUnit<[u8; 4]>Implementations§
Source§impl WIN32_MEMORY_REGION_INFORMATION__bindgen_ty_1__bindgen_ty_1
impl WIN32_MEMORY_REGION_INFORMATION__bindgen_ty_1__bindgen_ty_1
pub fn Private(&self) -> ULONG
pub fn set_Private(&mut self, val: ULONG)
pub unsafe fn Private_raw(this: *const Self) -> ULONG
pub unsafe fn set_Private_raw(this: *mut Self, val: ULONG)
pub fn MappedDataFile(&self) -> ULONG
pub fn set_MappedDataFile(&mut self, val: ULONG)
pub unsafe fn MappedDataFile_raw(this: *const Self) -> ULONG
pub unsafe fn set_MappedDataFile_raw(this: *mut Self, val: ULONG)
pub fn MappedImage(&self) -> ULONG
pub fn set_MappedImage(&mut self, val: ULONG)
pub unsafe fn MappedImage_raw(this: *const Self) -> ULONG
pub unsafe fn set_MappedImage_raw(this: *mut Self, val: ULONG)
pub fn MappedPageFile(&self) -> ULONG
pub fn set_MappedPageFile(&mut self, val: ULONG)
pub unsafe fn MappedPageFile_raw(this: *const Self) -> ULONG
pub unsafe fn set_MappedPageFile_raw(this: *mut Self, val: ULONG)
pub fn MappedPhysical(&self) -> ULONG
pub fn set_MappedPhysical(&mut self, val: ULONG)
pub unsafe fn MappedPhysical_raw(this: *const Self) -> ULONG
pub unsafe fn set_MappedPhysical_raw(this: *mut Self, val: ULONG)
pub fn DirectMapped(&self) -> ULONG
pub fn set_DirectMapped(&mut self, val: ULONG)
pub unsafe fn DirectMapped_raw(this: *const Self) -> ULONG
pub unsafe fn set_DirectMapped_raw(this: *mut Self, val: ULONG)
pub fn Reserved(&self) -> ULONG
pub fn set_Reserved(&mut self, val: ULONG)
pub unsafe fn Reserved_raw(this: *const Self) -> ULONG
pub unsafe fn set_Reserved_raw(this: *mut Self, val: ULONG)
pub fn new_bitfield_1( Private: ULONG, MappedDataFile: ULONG, MappedImage: ULONG, MappedPageFile: ULONG, MappedPhysical: ULONG, DirectMapped: ULONG, Reserved: ULONG, ) -> __BindgenBitfieldUnit<[u8; 4]>
Trait Implementations§
Source§impl Clone for WIN32_MEMORY_REGION_INFORMATION__bindgen_ty_1__bindgen_ty_1
impl Clone for WIN32_MEMORY_REGION_INFORMATION__bindgen_ty_1__bindgen_ty_1
Source§fn clone(&self) -> WIN32_MEMORY_REGION_INFORMATION__bindgen_ty_1__bindgen_ty_1
fn clone(&self) -> WIN32_MEMORY_REGION_INFORMATION__bindgen_ty_1__bindgen_ty_1
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 WIN32_MEMORY_REGION_INFORMATION__bindgen_ty_1__bindgen_ty_1
Auto Trait Implementations§
impl Freeze for WIN32_MEMORY_REGION_INFORMATION__bindgen_ty_1__bindgen_ty_1
impl RefUnwindSafe for WIN32_MEMORY_REGION_INFORMATION__bindgen_ty_1__bindgen_ty_1
impl Send for WIN32_MEMORY_REGION_INFORMATION__bindgen_ty_1__bindgen_ty_1
impl Sync for WIN32_MEMORY_REGION_INFORMATION__bindgen_ty_1__bindgen_ty_1
impl Unpin for WIN32_MEMORY_REGION_INFORMATION__bindgen_ty_1__bindgen_ty_1
impl UnsafeUnpin for WIN32_MEMORY_REGION_INFORMATION__bindgen_ty_1__bindgen_ty_1
impl UnwindSafe for WIN32_MEMORY_REGION_INFORMATION__bindgen_ty_1__bindgen_ty_1
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