#[repr(C)]pub struct PROCESSOR_POWER_POLICY {
    pub Revision: DWORD,
    pub DynamicThrottle: BYTE,
    pub Spare: [BYTE; 3],
    pub BitFields: DWORD,
    pub PolicyCount: DWORD,
    pub Policy: [PROCESSOR_POWER_POLICY_INFO; 3],
}Fields§
§Revision: DWORD§DynamicThrottle: BYTE§Spare: [BYTE; 3]§BitFields: DWORD§PolicyCount: DWORD§Policy: [PROCESSOR_POWER_POLICY_INFO; 3]Implementations§
Source§impl PROCESSOR_POWER_POLICY
 
impl PROCESSOR_POWER_POLICY
pub fn DisableCStates(&self) -> DWORD
pub fn set_DisableCStates(&mut self, val: DWORD)
pub fn Reserved(&self) -> DWORD
pub fn set_Reserved(&mut self, val: DWORD)
Trait Implementations§
Source§impl Clone for PROCESSOR_POWER_POLICY
 
impl Clone for PROCESSOR_POWER_POLICY
Source§fn clone(&self) -> PROCESSOR_POWER_POLICY
 
fn clone(&self) -> PROCESSOR_POWER_POLICY
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 PROCESSOR_POWER_POLICY
Auto Trait Implementations§
impl Freeze for PROCESSOR_POWER_POLICY
impl RefUnwindSafe for PROCESSOR_POWER_POLICY
impl Send for PROCESSOR_POWER_POLICY
impl Sync for PROCESSOR_POWER_POLICY
impl Unpin for PROCESSOR_POWER_POLICY
impl UnwindSafe for PROCESSOR_POWER_POLICY
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