#[repr(C, align(4))]pub struct _SYSTEM_SUPPORTED_PROCESSOR_ARCHITECTURES_INFORMATION {
pub _bitfield_align_1: [u16; 0],
pub _bitfield_1: __BindgenBitfieldUnit<[u8; 4]>,
}Fields§
§_bitfield_align_1: [u16; 0]§_bitfield_1: __BindgenBitfieldUnit<[u8; 4]>Implementations§
Source§impl _SYSTEM_SUPPORTED_PROCESSOR_ARCHITECTURES_INFORMATION
impl _SYSTEM_SUPPORTED_PROCESSOR_ARCHITECTURES_INFORMATION
pub fn Machine(&self) -> DWORD
pub fn set_Machine(&mut self, val: DWORD)
pub unsafe fn Machine_raw(this: *const Self) -> DWORD
pub unsafe fn set_Machine_raw(this: *mut Self, val: DWORD)
pub fn KernelMode(&self) -> DWORD
pub fn set_KernelMode(&mut self, val: DWORD)
pub unsafe fn KernelMode_raw(this: *const Self) -> DWORD
pub unsafe fn set_KernelMode_raw(this: *mut Self, val: DWORD)
pub fn UserMode(&self) -> DWORD
pub fn set_UserMode(&mut self, val: DWORD)
pub unsafe fn UserMode_raw(this: *const Self) -> DWORD
pub unsafe fn set_UserMode_raw(this: *mut Self, val: DWORD)
pub fn Native(&self) -> DWORD
pub fn set_Native(&mut self, val: DWORD)
pub unsafe fn Native_raw(this: *const Self) -> DWORD
pub unsafe fn set_Native_raw(this: *mut Self, val: DWORD)
pub fn Process(&self) -> DWORD
pub fn set_Process(&mut self, val: DWORD)
pub unsafe fn Process_raw(this: *const Self) -> DWORD
pub unsafe fn set_Process_raw(this: *mut Self, val: DWORD)
pub fn WoW64Container(&self) -> DWORD
pub fn set_WoW64Container(&mut self, val: DWORD)
pub unsafe fn WoW64Container_raw(this: *const Self) -> DWORD
pub unsafe fn set_WoW64Container_raw(this: *mut Self, val: DWORD)
pub fn ReservedZero0(&self) -> DWORD
pub fn set_ReservedZero0(&mut self, val: DWORD)
pub unsafe fn ReservedZero0_raw(this: *const Self) -> DWORD
pub unsafe fn set_ReservedZero0_raw(this: *mut Self, val: DWORD)
pub fn new_bitfield_1( Machine: DWORD, KernelMode: DWORD, UserMode: DWORD, Native: DWORD, Process: DWORD, WoW64Container: DWORD, ReservedZero0: DWORD, ) -> __BindgenBitfieldUnit<[u8; 4]>
Trait Implementations§
Source§impl Clone for _SYSTEM_SUPPORTED_PROCESSOR_ARCHITECTURES_INFORMATION
impl Clone for _SYSTEM_SUPPORTED_PROCESSOR_ARCHITECTURES_INFORMATION
Source§fn clone(&self) -> _SYSTEM_SUPPORTED_PROCESSOR_ARCHITECTURES_INFORMATION
fn clone(&self) -> _SYSTEM_SUPPORTED_PROCESSOR_ARCHITECTURES_INFORMATION
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 _SYSTEM_SUPPORTED_PROCESSOR_ARCHITECTURES_INFORMATION
Auto Trait Implementations§
impl Freeze for _SYSTEM_SUPPORTED_PROCESSOR_ARCHITECTURES_INFORMATION
impl RefUnwindSafe for _SYSTEM_SUPPORTED_PROCESSOR_ARCHITECTURES_INFORMATION
impl Send for _SYSTEM_SUPPORTED_PROCESSOR_ARCHITECTURES_INFORMATION
impl Sync for _SYSTEM_SUPPORTED_PROCESSOR_ARCHITECTURES_INFORMATION
impl Unpin for _SYSTEM_SUPPORTED_PROCESSOR_ARCHITECTURES_INFORMATION
impl UnsafeUnpin for _SYSTEM_SUPPORTED_PROCESSOR_ARCHITECTURES_INFORMATION
impl UnwindSafe for _SYSTEM_SUPPORTED_PROCESSOR_ARCHITECTURES_INFORMATION
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